#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 strcpy() function?
How many levels of indirection in pointers can you have in a single declaration?
By using C language input a date into it and if it is right?
In C programming, what command or code can be used to determine if a number of odd or even?
what is a function method?give example?
Why is extern used in c?
What are the differences between new and malloc in C?
Write a program for Overriding.
What are runtime error?
How can I handle floating-point exceptions gracefully?
Why can't I perform arithmetic on a void* pointer?
What is structure padding and packing in c?
Can a function argument have default value?
Explain which function in c can be used to append a string to another string?
How do I swap bytes?