if you mean print the contents of your array within the function, then where you've got printf("_ ") you can either use



putchar(b[r][c]);
// or
printf("%c", b[r][c]);


if you mean add...