Void main () { A char (*) [6]="world"; Char * b=a; Printf (" % c ", a); Printf (" % c ", * * a); Printf (" % c ", * b); Printf (" % c ", * (a + 2)); Printf (" % c ", * (b + 2)); If (a==* a) printf (" yes "); The else printf (" no "); If (a==b) printf (" Y "); The else printf (" N "); System (" pause "); }
Which explain the origin of the great god, really don't understand
CodePudding user response:
The building Lord determine program can compile? What version of the compiler?