hex read scanf example

This commit is contained in:
Mert Gör 🇹🇷 2025-03-21 13:10:07 +03:00
parent dcf7552add
commit ffca2a7d25
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F

12
c-basic/hex_read_scanf.c Normal file
View File

@ -0,0 +1,12 @@
#include <stdio.h>
int main()
{
int a, b;
printf("Enter your number : ");
scanf("%x", &a);
printf("a = %d\n", a);
return 0;
}