what is the output of the following code?
main()
{
int I;
I=0x10+010+10;
printf("x=%x",I);
}
give detailed reason

Answers were Sorted based on User's Feedback



what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x"..

Answer / yogesh bansal

Output of this program is 22
reason is :
0x10 is hexadecimal value which is equal to 16 in decimal.
010 is octal value which is equal to 8 in decimal
10 is decimal value

so total is 16+8+10= 34

I value is 34.
Now we are printing the value of I on hexadecimal using %x
34 is equal to 0x22 in hexadecimal.

so the output is 22 in hexadecimal

Hope its is clear to you

Is This Answer Correct ?    70 Yes 8 No

what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x"..

Answer / kartik

Output of this program is 22
reason is :
0x10 is hexadecimal value which is equal to 16 in decimal.
010 is octal value which is equal to 8 in decimal
10 is decimal value

so total is 16+8+10= 34

I value is 34.

Note:The person above me has given the corrst infm however the output is 34.
Try and run the program in C Compiler

Is This Answer Correct ?    12 Yes 7 No

what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x"..

Answer / arpita

12

Is This Answer Correct ?    2 Yes 29 No

Post New Answer

More C Interview Questions

What is pragma in c?

0 Answers  


What is #line used for?

0 Answers  


swap 2 numbers without using third variable?

0 Answers   IBS,


c pgm count no of lines , blanks, tabs in a para(File concept)

2 Answers  


How do you determine the length of a string value that was stored in a variable?

0 Answers  






what is the use of c program?

4 Answers   Synergy, Web Synergies,


How can I access memory located at a certain address?

3 Answers   Verizon,


main() { int i=5; printf("%d%d%d%d",i++,i--,i); }

10 Answers  


‎How to define structures? · ‎

0 Answers  


What are the different types of linkage exist in c?

0 Answers  


What is action and transformation in spark?

0 Answers  


What do you know about the use of bit field?

0 Answers  


Categories