What is break statement?


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

Post New Answer

More C Interview Questions

Process by which one bit pattern in to another by bit wise operation is?

0 Answers   InterGraph,


Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.

6 Answers   FCI, TCS,


What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }

1 Answers  


how c source file in converted to exe file

5 Answers   KPIT,


size maximum allocated by calloc()

3 Answers   DELL,






How many data structures are there in c?

0 Answers  


how to copy a string without using c function

5 Answers  


What is .obj file in c?

0 Answers  


main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }

1 Answers  


a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above

0 Answers  


Average of a couple 10 years ago was 25. The average remains same after having a child and twins after 3 years. What is the present age of the first child

10 Answers   IBM, Infosys,


GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)

0 Answers  


Categories