main()
{
inta=10,b=20;
a>=5?b=100:b=200;
printf("%d
",b);
}
No Answer is Posted For this Question
Be the First to Post Answer
printf("%d",(printf("Hello")); What it returns?
Is it possible to initialize a variable at the time it was declared?
Average of a couple 10 years ago was 25. The average remains same after having a child and twins after 3 years. What is the present age of the first child
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }
what is the code for getting the output as * ** ***
What is the difference between char a[] = "string"; and char *p = "string"; ?
14 Answers Adobe, Honeywell, TCS,
here is a link to download Let_Us_C_-_Yashwant_Kanetkar
How can I dynamically allocate arrays?
write a 'c' program to sum the number of integer values
Why isnt there a numbered, multi-level break statement to break out
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT