int i;
i=2;
i++;
if(i=4)
{
printf(i=4);
}
else
{
printf(i=3);
}
output of the program ?
Answer Posted / sathish
output is 3
| Is This Answer Correct ? | 7 Yes | 5 No |
Post New Answer View All Answers
What is data types?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What is the role of this pointer?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
Define the scope of static variables.
What are the difference between a free-standing and a hosted environment?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is difference between array and structure in c?
Explain data types & how many data types supported by c?
simple program of graphics and their output display
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What are identifiers and keywords in c?
How can I find the modification date and time of a file?
Explain the use of fflush() function?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.