Recent questions tagged explanation

1 votes
2 answers
1
void main() { char*s[]={"iceland","Greenland","Ireland","Switzerland"}; char ptr[]={s+3,s+2,s+1,s}; char *p=ptr; printf(\%s ", ++p); printf(\%s ",*(*++p+3); printf(\%s ...
0 votes
2 answers
2
#include<stdio.h main() { char c = 'A'+255; printf("%c", c); }
0 votes
2 answers
3
#include <stdio.h>main(){char *p = 0;*p = 'a';printf("value in pointer p is %c\n", *p);}
To see more, click for the full list of questions or popular tags.