what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}

Answers were Sorted based on User's Feedback



what will be the output of this program main() { int i=1; while (i<=10); { i++; } } ..

Answer / abdulhamid

just wanna know

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More C Interview Questions

What does c mean in basketball?

0 Answers  


EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>

4 Answers  


What are the header files used in c language?

0 Answers  


write a program to print largest number of each row of a 2D array

0 Answers  


using only #include <stdio.h> and #include <stdlib.h> Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.

0 Answers  






Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.

1 Answers  


Do you know the difference between exit() and _exit() function in c?

0 Answers  


Explain the use of 'auto' keyword in c programming?

0 Answers  


#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }

6 Answers   ME,


what is the structure?

4 Answers   TCS,


a program that can input number of records and can view it again the record

0 Answers   Accenture,


Where static variables are stored in memory in c?

0 Answers  


Categories