#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 are the similarities between c and c++?
Can math operations be performed on a void pointer?
What are variables and it what way is it different from constants?
Can we use any name in place of argv and argc as command line arguments?
Explain the array representation of a binary tree in C.
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
What is use of null pointer in c?
What are pointers? What are different types of pointers?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
What are pointers?
What is difference between structure and union?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
Can i use “int” data type to store the value 32768? Why?
will u please send me the placement papers to my mail???????????????????
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0