Skip to content

Instantly share code, notes, and snippets.

@yuan3y
Created November 21, 2015 18:05
Show Gist options
  • Save yuan3y/d26df7b2ba503afe2892 to your computer and use it in GitHub Desktop.
Save yuan3y/d26df7b2ba503afe2892 to your computer and use it in GitHub Desktop.
c string concept
#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