int i;
i=2;
i++;
if(i=4)
{
printf(i=4);
}
else
{
printf(i=3);
}
output of the program ?
Answer Posted / gowtham
answer is three
| Is This Answer Correct ? | 1 Yes | 6 No |
Post New Answer View All Answers
What is the acronym for ansi?
What is the 'named constructor idiom'?
How important is structure in life?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
Explain low-order bytes.
How to create struct variables?
Explain 'far' and 'near' pointers in c.
Is there a way to compare two structure variables?
What is meant by type specifiers?
What is variable declaration and definition in c?
What are the valid places to have keyword “break”?
How do you sort filenames in a directory?
What is floating point constants?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above