hex read scanf example
This commit is contained in:
parent
dcf7552add
commit
ffca2a7d25
12
c-basic/hex_read_scanf.c
Normal file
12
c-basic/hex_read_scanf.c
Normal 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;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user