#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
What is the translation phases used in c language?
What are different storage class specifiers in c?
What is wrong with this program statement? void = 10;
FILE PROGRAMMING
Hi can anyone tell what is a start up code?
can anyone suggest some site name..where i can get some good data structure puzzles???
Define Array of pointers.
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
What is clrscr ()?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
all c language question
Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014 Npu university
Combinations of fibanocci prime series
When should a type cast be used?
Is it acceptable to declare/define a variable in a c header?