Showing posts with label associativity. Show all posts
69

69

int main() { int i=0,j; j=(i++,++i); printf ( "%d %d " ,i,j); return 0; } Output 2 2 Logic: As per the Associativity of the...
Read More
51

51

char ch(char a,char b) { if(a,b) return a; else return b; } int main() { char a='s',b='t'; char *p=&a; char c; c=ch(a++,...
Read More