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 / mohmedali
1
| Is This Answer Correct ? | 1 Yes | 8 No |
Post New Answer View All Answers
What are the benefits of c language?
Can we add pointers together?
What is dynamic dispatch in c++?
What is the benefit of using #define to declare a constant?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
What is c language and why we use it?
How do I use strcmp?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
What is the g value paradox?
Tell us two differences between new () and malloc ()?
Explain how do you use a pointer to a function?
What is strcmp in c?
Explain the difference between ++u and u++?
number of times a digit is present in a number
What is memory leak in c?