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
0
| Is This Answer Correct ? | 4 Yes | 6 No |
Post New Answer View All Answers
Differentiate abs() function from fabs() function.
Are enumerations really portable?
What is the value of h?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
How do you construct an increment statement or decrement statement in C?
In C, What is the #line used for?
Tell us bitwise shift operators?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What is page thrashing?
Write a program to use switch statement.
What is sizeof array?
What is volatile variable how do you declare it?
Can you mix old-style and new-style function syntax?
What does typeof return in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);