#include<stdio.h>
void main()
{
int a,b,c;
a=b=c=1;
c=++a || ++b && ++c;
printf("%d\t%d\t%d",a,b,c);
}
Answer Posted / biren
a=2 b=1 c=1
why plz tell me
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
How can I manipulate individual bits?
What is echo in c programming?
which is an algorithm for sorting in a growing Lexicographic order
Write a program to reverse a string.
What is "Duff's Device"?
What is the purpose of & in scanf?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
Is r written in c?
Why does everyone say not to use gets?
What is the function of this pointer?
Write a c program to demonstrate character and string constants?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
how can I convert a string to a number?
What is a stream water?
How can I write a function analogous to scanf?