#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.
Answer Posted / manohar
%h%h%h
| Is This Answer Correct ? | 9 Yes | 3 No |
Post New Answer View All Answers
List some of the static data structures in C?
Write a program to reverse a given number in c language?
Differentiate between the = symbol and == symbol?
What is array of structure in c programming?
What is default value of global variable in c?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
In c programming language, how many parameters can be passed to a function ?
What is the size of array float a(10)?
What is data structure in c programming?
What are the advantages of using new operator as compared to the function malloc ()?
What is c variable?
What are the advantages of c language?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
Difference between exit() and _exit() function?
What is scanf_s in c?