What is structure of c program?


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

Post New Answer

More C Interview Questions

Is it better to bitshift a value than to multiply by 2?

0 Answers  


Which driver is a pure java driver

0 Answers   Vertex,


C program to find frequency of each character in a text file?

6 Answers  


why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above

0 Answers  


Explain how can you be sure that a program follows the ansi c standard?

0 Answers  






write a program in c to print **** * * * * ****

1 Answers   TCS,


write a c program to calculate sum of digits till it reduces to a single digit using recursion

0 Answers   IBM,


Snake Game: This is normal snake game which you can find in most of the mobiles. You can develop it in Java, C/C++, C# or what ever language you know.

7 Answers   Accenture, Gridco, IBM, Kevin IT, TCS, Vimukti Technologies,


what is the similarities between. system call and library function?

1 Answers   Wipro,


void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }

1 Answers  


int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

10 Answers   Wipro,


Can we declare a function inside a function in c?

0 Answers  


Categories