main()
{
static int ivar=5;
printf("%d",ivar--);
if(ivar)
main();
}
Answer Posted / suresh kallam
4 3 2 1 0
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What is the explanation for prototype function in c?
Tell us bitwise shift operators?
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.
Write the Program to reverse a string using pointers.
List out few of the applications that make use of Multilinked Structures?
What is string concatenation in c?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
What is difference between && and & in c?
Which are low level languages?
How do you construct an increment statement or decrement statement in C?
Write a Program to find whether the given number or string is palindrome.
Linked lists -- can you tell me how to check whether a linked list is circular?
What is difference between union and structure in c?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?