#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
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
What are actual arguments?
write a c program to find the sum of five entered numbers using an array named number
Is sizeof a keyword in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is the right type to use for boolean values in c?
What is the difference between printf and scanf in c?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Can we change the value of constant variable in c?
Explain how can I convert a string to a number?
Write a program for finding factorial of a number.
What are the 32 keywords in c?
What is the difference between array and linked list in c?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
c program for searching a student details among 10 student details