int i;
i=2;
i++;
if(i=4)
{
printf(i=4);
}
else
{
printf(i=3);
}
output of the program ?

Answer Posted / asdf

un predictable

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a scope resolution operator in c?

741


What is cohesion in c?

534


Why pointers are used in c?

578


What is c standard library?

687


Explain what are global variables and explain how do you declare them?

635






What are pointers? What are different types of pointers?

620


any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()

689


How to draw the flowchart for structure programs?

8757


How main function is called in c?

620


How to implement a packet in C

2387


What are comments and how do you insert it in a C program?

733


Does c have enums?

592


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)

682


A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?

1768


Where static variables are stored in c?

581