rgb to hex

This commit is contained in:
Alexander Popov 2023-04-14 23:04:16 +03:00
parent dd2e9f4a38
commit 00395e9111
Signed by: iiiypuk
GPG Key ID: E47FE0AB36CD5ED6
1 changed files with 12 additions and 0 deletions

12
~/C/rgbToHex.c Normal file
View File

@ -0,0 +1,12 @@
#include <stdio.h>
int main(int argc, char const *argv[])
{
int red = 0;
int green = 128;
int blue = 64;
printf("#%.2x%.2x%.2x\n", red, green, blue);
return 0;
}