what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}
Answer Posted / pervinder sing dinghra
infine loop
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
Explain what is the difference between text files and binary files?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
Why are algorithms important in c program?
What is array within structure?
What is struct node in c?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
pierrot's divisor program using c or c++ code
What does the c in ctime mean?
what is different between auto and local static? why should we use local static?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Explain how can a program be made to print the line number where an error occurs?
What is scope of variable in c?
What is the newline escape sequence?
How will you delete a node in DLL?