#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


Please Help Members By Posting Answers For Below Questions

Differentiate between a structure and a union.

878


What is the best way of making my program efficient?

669


What is variable initialization and why is it important?

712


How do you override a defined macro?

788


What is a program flowchart and how does it help in writing a program?

778






What are the different types of pointers used in c language?

680


write a program in c language to print your bio-data on the screen by using functions.

6369


Do you know what are bitwise shift operators in c programming?

693


What is an example of structure?

682


How are pointers declared in c?

687


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.

2262


What does 3 mean in texting?

707


a program that can input number of records and can view it again the record

1588


How can I use a preprocessorif expression to ?

682


What is the difference between mpi and openmp?

837