What is the output of below code?
main() { static int a=5; printf("%3d",a--); if(a) main(); }
Answer Posted / vikas
output is 5 4 3 2 1
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
How do you use a pointer to a function?
Do you know the use of fflush() function?
What is pass by value in c?
When should volatile modifier be used?
Explain pointers in c programming?
What is a macro in c preprocessor?
how do you programme Carrier Sense Multiple Access
What are predefined functions in c?
Which driver is a pure java driver
What is #define?
What is the purpose of 'register' keyword?
What is non linear data structure in c?
Tell me when is a void pointer used?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
How many types of functions are there in c?