#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
Does free set pointer to null?
Difference between macros and inline functions? Can a function be forced as inline?
What is a string?
If null and 0 are equivalent as null pointer constants, which should I use?
What is the best way to comment out a section of code that contains comments?
Why pointers are used?
What is %lu in c?
What is calloc()?
What does *p++ do?
What is memory leak in c?
Write a program for finding factorial of a number.
i want to know the procedure of qualcomm for getting a job through offcampus
Explain how do you print only part of a string?
What is the difference between arrays and pointers?
Find MAXIMUM of three distinct integers using a single C statement