what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}
Answer Posted / srikanth karnati
there is no output because there is no out statment
there.if write printf("%d",i);at out side the loop the
output will be 11.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
How many types of sorting are there in c?
What is the difference between āgā and āgā in C?
What does it mean when a pointer is used in an if statement?
What is pragma in c?
What is the difference between int main and void main?
Explain what is operator promotion?
How can I recover the file name given an open stream or file descriptor?
What are the 5 elements of structure?
Is file a keyword in c?
What happens if you free a pointer twice?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
Can 'this' pointer by used in the constructor?
Ow can I insert or delete a line (or record) in the middle of a file?
Write a program to find the biggest number of three numbers in c?
Is c a great language, or what?