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 / sh college,thevara
-128
| Is This Answer Correct ? | 31 Yes | 8 No |
Post New Answer View All Answers
Write a program in c to replace any vowel in a string with z?
How do you override a defined macro?
Tell us the use of fflush() function in c language?
What is s in c?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
Ow can I insert or delete a line (or record) in the middle of a file?
What is c mainly used for?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
Why isn't any of this standardized in c? Any real program has to do some of these things.
What is union in c?
Why array is used in c?
What is an array in c?
Explain the term printf() and scanf() used in c language?
List the different types of c tokens?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)