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
What is c system32 taskhostw exe?
What is an array? What the different types of arrays in c?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
What does 1f stand for?
Why are algorithms important in c program?
What is the purpose of void pointer?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
Tell me what is null pointer in c?
How can you restore a redirected standard stream?
how to write a c program to print list of fruits in alpabetical order?
Difference between Function to pointer and pointer to function
What is fflush() function?
How can you read a directory in a C program?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
What is LINKED LIST? How can you access the last element in a linked list?