main()
{
static int ivar=5;
printf("%d",ivar--);
if(ivar)
main();
}
Answer Posted / sindhujah
4
| Is This Answer Correct ? | 3 Yes | 12 No |
Post New Answer View All Answers
Can we use visual studio for c?
How can I delete a file?
What is the use of header?
write a program to find the given number is prime or not
What is c preprocessor mean?
What is the scope of local variable in c?
What is the difference between procedural and functional programming?
What are 3 types of structures?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
How does selection sort work in c?
What is meant by type casting?
Tell us the use of fflush() function in c language?
What is the purpose of the statement: strcat (S2, S1)?
How do you list files in a directory?