what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}
Answer Posted / sanjiv
11
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is calloc()?
What is typedef example?
what are the advantages of a macro over a function?
write a c program to find the sum of five entered numbers using an array named number
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
What are near, far and huge pointers?
Is return a keyword in c?
What is extern keyword in c?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Can 'this' pointer by used in the constructor?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
How to delete a node from linked list w/o using collectons?
difference between Low, Middle, High Level languages in c ?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
Why does everyone say not to use gets?