What does
do in c?


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

Post New Answer

More C Interview Questions

How can I split up a string into whitespace-separated fields?

0 Answers  


for(;;) printf("C language") What is out put of above??

2 Answers   Practical Viva Questions,


exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above

0 Answers  


Is there a way to compare two structure variables?

0 Answers  


Why does notstrcat(string, "!");Work?

0 Answers  






find a number whether it is even or odd without using any control structures and relational operators?

22 Answers   Microsoft, Shashank Private Limited,


What is the use of a static variable in c?

0 Answers  


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

0 Answers   Wilco,


Find the highest of three numbers and print them using ascending orders?

1 Answers  


main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }

7 Answers   HCL,


How can I increase the allowable number of simultaneously open files?

1 Answers   ABC,


Why c is called object oriented language?

0 Answers  


Categories