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
What are pointers? What are different types of pointers?
Why header file is used in c?
Write a progarm to find the length of string using switch case?
Are pointers integer?
Why pointers are used in c?
What is the difference between struct and typedef struct in c?
What are the advantage of c language?
How can you access memory located at a certain address?
Differentiate between the expression “++a” and “a++”?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
What do you mean by a local block?
What is the newline escape sequence?
Compare and contrast compilers from interpreters.
When do we get logical errors?
What do you mean by scope of a variable in c?