What is the output of the program given below
#include<stdio.h>
main()
{
char i=0;
for(;i>=0;i++) ;
printf("%d\n",i);
}
Answer Posted / deepanjali
infinte loop
| Is This Answer Correct ? | 4 Yes | 10 No |
Post New Answer View All Answers
What is c variable?
What is the heap in c?
What is ambagious result in C? explain with an example.
What do you mean by Recursion Function?
Do you know pointer in c?
How do you define CONSTANT in C?
What should malloc() do?
what is the difference between 123 and 0123 in c?
Write a program to print numbers from 1 to 100 without using loop in c?
what are the different storage classes in c?
Explain enumerated types in c language?
What is meant by type casting?
What is a good data structure to use for storing lines of text?
What is a char c?
How do you search data in a data file using random access method?