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 / aryan
-128
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Write the syntax and purpose of a switch statement in C.
What is "Duff's Device"?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
Explain what are multibyte characters?
write a proram to reverse the string using switch case?
What is declaration and definition in c?
How can I make sure that my program is the only one accessing a file?
Tell me with an example the self-referential structure?
What is the value of c?
What are the advantages of using linked list for tree construction?
What are pointers? What are different types of pointers?
How can I do graphics in c?