closed by
454 views
0 votes
0 votes
closed with the note: got correct answer
int main()
{
    int a=2,b=2,c=2;
    printf("%d",a==b==c);
    return 0;
}

what is the output??? and what will be done during execution

can anyone explain this……...
closed by

Related questions

1 votes
1 votes
1 answer
1
Harikesh Kumar asked Jan 14, 2018
359 views
step by step compile it and provide output
1 votes
1 votes
1 answer
2
Abhisek Saha asked Nov 15, 2017
710 views
What will be the output ?#include<stdio.h>int main(){ char *str1 = "xyz"; char *str2 = "xyz"; if(str1 == str2) printf("equal"); else printf("une...
1 votes
1 votes
2 answers
3