WIPRO Paper
#include main(){ char a[]="hellow"; char *b="hellow"; char c[5]="hellow"; printf("%s %s %s ",a,b,c); printf(" ",sizeof(a),sizeof(b),sizeof(c)); }
Select Answer:
hello,hello,hello 6,2,5
hellow,hellow,hellow 6,2,5
hello,hellow,hellow 6,2,5
hellow,hello,hello 6,2,5
|