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 / sakthi
the function should not return any value.
or
-113
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
what is the function of pragma directive in c?
What are run-time errors?
What is getch() function?
Explain what is gets() function?
What is the difference between NULL and NUL?
What do you mean by invalid pointer arithmetic?
What are logical errors and how does it differ from syntax errors?
What is c variable?
Explain is it valid to address one element beyond the end of an array?
How do you determine a file’s attributes?
Why do we use header files in c?
What is a floating point in c?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
What is the difference between arrays and pointers?
What is file in c language?