what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}
Answer Posted / harun
11
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is difference between structure and union?
Is javascript based on c?
How do I use strcmp?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Is c language still used?
What is #pragma statements?
What does & mean in scanf?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
How to write a code for reverse of string without using string functions?
How can you allocate arrays or structures bigger than 64K?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
How can I find the modification date of a file?
What is the use of clrscr?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above