what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}
Answer Posted / niranjan kumar niraj
output is 1
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Why functions are used in c?
how to write optimum code to divide a 50 digit number with a 25 digit number??
Can the curly brackets { } be used to enclose a single line of code?
Describe explain how arrays can be passed to a user defined function
What does main () mean in c?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Differentiate Source Codes from Object Codes
while initialization of array why we use a[][2] why not a[2][]...?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What is c programming structure?
What is typedef struct in c?
How to create struct variables?
What is wrong with this program statement? void = 10;
Why enum is used in c?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)