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 / rekha
It will print 0 to 127
| Is This Answer Correct ? | 6 Yes | 6 No |
Post New Answer View All Answers
What is a shell structure examples?
How to find a missed value, if you want to store 100 values in a 99 sized array?
When should a type cast be used?
Explain what are multidimensional arrays?
what do u mean by Direct access files? then can u explain about Direct Access Files?
What is the significance of an algorithm to C programming?
What is register variable in c language?
What is the use of a semicolon (;) at the end of every program statement?
What is the best way to comment out a section of code that contains comments?
What is the value of uninitialized variable in c?
What is use of #include in c?
What is wrong with this code?
What are 3 types of structures?
Why is it that not all header files are declared in every C program?
How can I open files mentioned on the command line, and parse option flags?