#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
Differentiate between a structure and a union.
What is the best way of making my program efficient?
What is variable initialization and why is it important?
How do you override a defined macro?
What is a program flowchart and how does it help in writing a program?
What are the different types of pointers used in c language?
write a program in c language to print your bio-data on the screen by using functions.
Do you know what are bitwise shift operators in c programming?
What is an example of structure?
How are pointers declared in c?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
What does 3 mean in texting?
a program that can input number of records and can view it again the record
How can I use a preprocessorif expression to ?
What is the difference between mpi and openmp?