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 / rajendra.p (honeywell)
-128 is correct answer
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
What are linked lists in c?
Why isn't it being handled properly?
how to write a c program to print list of fruits in alpabetical order?
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.
Once I have used freopen, how can I get the original stdout (or stdin) back?
What is indirection?
What are the types of functions in c?
What are the advantages of using linked list for tree construction?
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
What is meant by type casting?
How can I recover the file name given an open stream?
What is sorting in c plus plus?
What is the difference between strcpy() and memcpy() function in c programming?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above