Can main () be called recursively?


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

Post New Answer

More C Interview Questions

how to swap 2 numbers in a single statement?

3 Answers  


What is volatile

2 Answers  


void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case

9 Answers   Accenture, TCS,


What is the difference between text files and binary files?

0 Answers  


What are header files in c?

0 Answers  






write a program for 7*8 = 56 ? without using * multiply operator ? output = 56

6 Answers   Xavient,


What is array of pointers to string?

0 Answers  


who will call your main function in c under linux?

2 Answers  


What is a scope resolution operator in c?

0 Answers  


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,


The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration

0 Answers  


how to add two numbers without using arithmetic operators?

4 Answers  


Categories