what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}
Answer Posted / durgesh
Infinite Loop...
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is the difference between union and structure in c?
What is malloc return c?
What is the purpose of 'register' keyword in c language?
Are pointers integers in c?
Why pointers are used in c?
Why use int main instead of void main?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
Explain what are run-time errors?
Write the Program to reverse a string using pointers.
Is there a way to compare two structure variables?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
What is the difference between %d and %i?
which is an algorithm for sorting in a growing Lexicographic order
What is else if ladder?
Why is c called "mother" language?