What is the output of the below program and how it is?
void main()
{
static int var=5;
printf("%d",var--);
if(var)
main();
}
Answer Posted / arti yadav
error
| Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
Which is the memory area not included in C program? give the reason
Explain data types & how many data types supported by c?
How can I copy just a portion of a string?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
What is the difference between pure virtual function and virtual function?
Explain how can I remove the trailing spaces from a string?
What does #pragma once mean?
What does typeof return in c?
What is a void pointer? When is a void pointer used?
What is strcpy() function?
What do you mean by c what are the main characteristics of c language?
Explain what is gets() function?
What is typeof in c?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
What is a method in c?