#include #include main() { char* A[10]; A[0] = (char *) malloc (100*sizeof(char)); A[0][0] = 'b'; A[0][1] = 'y'; A[0][2] = '\0'; printf ("%s\n",A[0]); }