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

How to draw the flowchart for structure programs?

0 Answers  


What is meant by preprocessor in c?

0 Answers  


Can an array be an Ivalue?

0 Answers   EXL,


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,


What is difference between static and global variable in c?

0 Answers  






What is output redirection?

0 Answers  


What are the different types of control structures in programming?

0 Answers  


What is NULL pointer?

0 Answers   Infosys,


write a program to interchange the value between two variable without using loop

1 Answers  


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  


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,


What is the difference between a free-standing and a hosted environment?

0 Answers   Aspire,


Categories