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
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What is enumerated data type in c?
What are linker error?
How can you tell whether two strings are the same?
write a c program for swapping two strings using pointer
How do we print only part of a string in c?
Why c is known as a mother language?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
If errno contains a nonzero number, is there an error?
Explain about C function prototype?
Is it better to use a macro or a function?
Why c is called procedure oriented language?
What is string concatenation in c?
What is the use of typedef in c?
What is return in c programming?