char str[10];

printf("%c", str[5]);

printf("%s", &str[5]);

scanf("%c", &str[5]);

scanf("%s", &str[5]);

分别是指什么?

You have no rights to post comments