int i;
i=2;
i++;
if(i=4)
{
printf(i=4);
}
else
{
printf(i=3);
}
output of the program ?
Answer Posted / akbar shan
There Wont be any output for this program.It will show
error.Because 1:inside if "=" is used.2:"printf" cant print
the value
Is This Answer Correct ? | 13 Yes | 3 No |
Post New Answer View All Answers
What are file streams?
Differentiate between functions getch() and getche().
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What does s c mean on snapchat?
What does static variable mean in c?
How can I discover how many arguments a function was actually called with?
List the difference between a "copy constructor" and a "assignment operator"?
What are the different types of endless loops?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
What is the best style for code layout in c?
What is #define size in c?
What is main return c?
Can the size of an array be declared at runtime?
Array is an lvalue or not?
What are the types of macro formats?