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
What is conio h in c?
What is break in c?
What are the applications of c language?
How to write c functions that modify head pointer of a linked list?
What would be an example of a structure analogous to structure c?
What is a volatile keyword in c?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
Why double pointer is used in c?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
Can you please compare array with pointer?
Which is the best website to learn c programming?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
Array is an lvalue or not?
How will you delete a node in DLL?
What is size of union in c?