#include<stdio.h>
void main()
{
int a=5,b=6,c;
int x=(a<b)+7;
int y=(x==7)*9;
int z=(c=x+y)*2;
printf("%h %h %h",x,y,z);
}
What is the output? Explain it.
Post New Answer View All Answers
What is methods in c?
Explain the difference between ++u and u++?
explain what is fifo?
What is a pointer value and address in c?
Is boolean a datatype in c?
Why is C language being considered a middle level language?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What is the size of structure in c?
Explain spaghetti programming?
What does the error message "DGROUP exceeds 64K" mean?
What is meant by int main ()?
Why shouldn’t I start variable names with underscores?
Are the expressions * ptr ++ and ++ * ptr same?
application attempts to perform an operation?
What is the difference between near, far and huge pointers?