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
garbage values
| Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
What is the return type of sizeof?
What is optimization in c?
What is an array? What the different types of arrays in c?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
Is it possible to execute code even after the program exits the main() function?
Can you define which header file to include at compile time?
Is c compiled or interpreted?
Tell me with an example the self-referential structure?
What is the code for 3 questions and answer check in VisualBasic.Net?
What are the rules for identifiers in c?
Define recursion in c.
Explain how can type-insensitive macros be created?
Is calloc better than malloc?
How old is c programming language?
What is a static variable in c?