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 / ferose
write a cprogram in 0 to 50 interger value divisble by 8
| Is This Answer Correct ? | 4 Yes | 5 No |
Post New Answer View All Answers
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What does %2f mean in c?
Explain setjmp()?
Can include files be nested?
What is a list in c?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
What is the value of c?
What is the general form of a C program?
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
Do you know the use of 'auto' keyword?
What is a good data structure to use for storing lines of text?
What is the ANSI C Standard?
Explain what are global variables and explain how do you declare them?
How can I call a function with an argument list built up at run time?