int i;
i=2;
i++;
if(i=4)
{
printf(i=4);
}
else
{
printf(i=3);
}
output of the program ?
Answer Posted / fazlur
the output will b 4.
| Is This Answer Correct ? | 6 Yes | 18 No |
Post New Answer View All Answers
write a program in c language to print your bio-data on the screen by using functions.
What does a function declared as pascal do differently?
What is typedef struct in c?
Can the size of an array be declared at runtime?
How #define works?
write a program to concatenation the string using switch case?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
What is the size of structure pointer in c?
List out few of the applications that make use of Multilinked Structures?
Explain how can I convert a string to a number?
ATM machine and railway reservation class/object diagram
In a switch statement, what will happen if a break statement is omitted?
Explain what are reserved words?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.