Write a program that his output 1 12 123


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

program to find the second largest word in a paragraph amongst all words that repeat more thn twice

4 Answers   CTS, iGate,


how to print "hai" in c?

13 Answers   TCS,


output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }

2 Answers   Elysium,


in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above

0 Answers  


When should we use pointers in a c program?

0 Answers  


Why is c called "mother" language?

0 Answers  


HOW TO SWAP TWO NOS IN ONE STEP?

16 Answers   Satyam,


Which is the best website to learn c programming?

0 Answers  


convert 0.9375 to binary

2 Answers   CTS, TANCET,


What is the memory allocated by the following definition ? int (*x)();

2 Answers   ADITI,


main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....

2 Answers  


how to find the sizof of any datatype using bit manipulations

3 Answers  


Categories