#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 / srinath
x=8;
y=0;
z=16;
| Is This Answer Correct ? | 19 Yes | 6 No |
Post New Answer View All Answers
What is calloc() function?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
What is the difference between ++a and a++?
What does the function toupper() do?
How a string is stored in c?
Explain what is the difference between a string and an array?
Explain what is the general form of a c program?
What is strcpy() function?
What are void pointers in c?
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
Is return a keyword in c?
What is pass by value in c?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
What are the types of data types and explain?