Created
November 21, 2015 18:05
-
-
Save yuan3y/d26df7b2ba503afe2892 to your computer and use it in GitHub Desktop.
c string concept
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main (void) | |
{ | |
char *a[2][3] = {"abc","defgi","ijkl","mnopqr","stuvm","xyz"}; | |
printf("%c",***(a+1) ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment