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 / senthil kumar.s
ans:0
| Is This Answer Correct ? | 1 Yes | 13 No |
Post New Answer View All Answers
a c code by using memory allocation for add ,multiply of sprase matrixes
What is I ++ in c programming?
What is bubble sort technique in c?
What is the ANSI C Standard?
Can we add pointers together?
write a program to create a sparse matrix using dynamic memory allocation.
How are Structure passing and returning implemented by the complier?
What are the scope of static variables?
What is the scope of global variable in c?
What is pass by reference in functions?
How pointers are declared?
What are c identifiers?
How can I pad a string to a known length?
What does the error 'Null Pointer Assignment' mean and what causes this error?
How can you invoke another program from within a C program?