void main()
{
static int i = 5;
if(--i)
{
main();
printf("%d
",i);
}
}
what would be output of the above program and justify your
answer?
}
Answer Posted / biren
we can't call a main function with in main.
| Is This Answer Correct ? | 7 Yes | 32 No |
Post New Answer View All Answers
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
What does d mean?
What is restrict keyword in c?
What is the difference between far and near ?
Give me the code of in-order recursive and non-recursive.
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
What is the size of enum in bytes?
Write a program to print all permutations of a given string.
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What is typedef struct in c?
Is stack a keyword in c?
What are the string functions? List some string functions available in c.
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
Why do we use main function?
what is ur strangth & weekness