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 / gautam
0 to 127
| Is This Answer Correct ? | 5 Yes | 6 No |
Post New Answer View All Answers
What is declaration and definition in c?
How do I read the arrow keys? What about function keys?
can we implement multi-threads in c.
What is the sizeof () a pointer?
What is "Hungarian Notation"?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
How can you draw circles in C?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What is the purpose of main() function?
Why header file is used in c?
Explain how can you check to see whether a symbol is defined?
What is a macro in c preprocessor?
How is null defined in c?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Can a function argument have default value?