266 views
1 votes
1 votes
Output will be-

int main(){ int a =0,b=1,c=3:

*((a)?&b&:&a)=a ? b : c;

printf("%d %d%d ", a,b,c);

}

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
1
ranarajesh495 asked Oct 9, 2018
591 views
If we are taking character as input then how we can check the character against a a range of numbers. Please explain
1 votes
1 votes
1 answer
2
Ravi prakash pandey asked Sep 2, 2017
313 views
Who calls the printf and scanf function in c and who receives the value returned by these functions??
3 votes
3 votes
1 answer
3
Rudra Pratap asked Jun 25, 2017
1,311 views
#include<stdio.h int main() { int i = 0x1 << sizeof(int)*8-1; printf("\n%x",i); i = i > sizeof(int)*8-1; printf("%d",i); }Find the output ?
0 votes
0 votes
1 answer
4
Rudra Pratap asked Jun 25, 2017
501 views
#include<stdio.h>int main(){ int x=20; printf("%d %d ",x ,++x);}unable to understand how it prints the output. plz help