What is the output of the program given below
#include<stdio.h>
main()
{
char i=0;
for(;i>=0;i++) ;
printf("%d\n",i);
}
Answer Posted / stuti
1
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
Why #include is used in c language?
When is a “switch” statement preferable over an “if” statement?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
What are the different types of endless loops?
How can I make it pause before closing the program output window?
What do you mean by scope of a variable in c?
What is the use of bit field?
How a string is stored in c?
What is local and global variable in c?
Explain the use of bit fieild.
Should a function contain a return statement if it does not return a value?
What is the use of header?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
Why doesn't C support function overloading?