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 a file descriptor in c?
What is a example of a variable?
Explain the meaning of keyword 'extern' in a function declaration.
how to execute a program using if else condition and the output should enter number and the number is odd only...
What are pointers? What are different types of pointers?
What is the most efficient way to count the number of bits which are set in an integer?
Why should I prototype a function?
What does the c in ctime mean?
how many key words availabel in c a) 28 b) 31 c) 32
How do you determine the length of a string value that was stored in a variable?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
What is a global variable in c?
write a program to rearrange the array such way that all even elements should come first and next come odd
What is the process of writing the null pointer?
What are local static variables?