closed by
151 views
1 votes
1 votes
closed with the note: Irrelevant for GATE, please see https://gateoverflow.in/blog/2113/new-posting-guidelines

closed by

Related questions

1 votes
1 votes
1 answer
1
anonymous asked Aug 14, 2016
495 views
int main() { char *p = "Good"; char a[] = "Good"; printf("%d\t%d\t%s\n", sizeof(p), sizeof(*p)); }According to me ans shld be 2,1but on running o/p is 8,1. How 8 is the o...
3 votes
3 votes
1 answer
2
Meenakshi Sharma asked Apr 4, 2018
1,552 views
main() { float a=.5, b=.7; if(b<.7) if(a<.5) printf("TELO"); else printf("LTTE"); else printf("JKLF"); }
0 votes
0 votes
1 answer
3
Don't you worry asked Jul 15, 2016
534 views
why the o/p of this programm is 12 ?#include<stdio.h>int main(){int x = 10;int y = (x++, ++x);printf("%d", y);getchar();return 0;}
1 votes
1 votes
2 answers
4
Rajnish Kumar asked Jul 14, 2015
527 views
#define square(x) x*xmain(){int i;i=64/square(4);printf("%d",i);}