Question
Get the Value From The User and Print the Corresponding Hexa-Decimal
Sample TestCase Expected Output
1. 10064
Answer
#include<stdio.h> int main() { long long int num1;
scanf("%lld", &num1); printf("%x",num1);
return 0;
}
This comment has been removed by a blog administrator.
ReplyDelete