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
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
What is the difference between text and binary i/o?
What does the characters “r” and “w” mean when writing programs that will make use of files?
Are the variables argc and argv are local to main?
Ow can I insert or delete a line (or record) in the middle of a file?
Is c compiled or interpreted?
Why are all header files not declared in every c program?
There seem to be a few missing operators ..
What are all different types of pointers in c?
What are logical errors and how does it differ from syntax errors?
What does %p mean c?
What is table lookup in c?
Is it acceptable to declare/define a variable in a c header?
Why is not a pointer null after calling free?
Why we use stdio h in c?