#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


Please Help Members By Posting Answers For Below Questions

How can I remove the trailing spaces from a string?

618


How can I make it pause before closing the program output window?

584


Where are the auto variables stored?

626


Can include files be nested? How many levels deep can include files be nested?

660


What are extern variables in c?

551






How to create struct variables?

597


Why do we use namespace feature?

585


How can I read and write comma-delimited text?

625


Is null always defined as 0(zero)?

617


Synonymous with pointer array a) character array b) ragged array c) multiple array d) none

620


What is omp_num_threads?

587


Explain how can I write functions that take a variable number of arguments?

619


What does p mean in physics?

587


What is meant by errors and debugging?

651


What are the advantages of external class?

598