Computer Science, asked by radhavcorpranadava, 1 year ago

Execute and Find the Output of the Given Code
Execute and find the output for the following code. #include int main() { int a = 100; printf("%x ",a); return 0; }

Answers

Answered by riyasheji
1
The output will be the hexadecimal of 100. so the output is:

64
Similar questions