下面语句中,正确的是_____。
A: printf("%c\n","student");
B: printf("%c\n","c");
C: printf("%s\n",&a);
D: printf("%s\n","hello");
A: printf("%c\n","student");
B: printf("%c\n","c");
C: printf("%s\n",&a);
D: printf("%s\n","hello");
举一反三
- 下面语句中,可以正确实现输出意图的是() A: printf("%c\n", "student"); B: printf("%c\n", "c"); C: printf("%s\n", "hello"); D: printf("%d\n", "1");
- 以下语句中错误地使用换行符的是() A: printf(“hello!\n”) B: printf(“\nhello!\n”) C: printf(“hello!/n”) D: printf(“hello!\n\n”)
- 下列不能输出字符串"Hello"的程序段是______。 A: char *t; t="Hello";printf("%s\n",t); B: char *t, s[]="Hello"; t=s;printf("%s\n",t); C: char s[20],*t=s; t="Hello";printf("%s\n",s); D: char *t, s[]="Hello"; t=s;printf("%s\n",s);
- 2.10 设有 int n=10; 要求屏幕上显示“n=10”结果,正确的语句是________。 A: printf( n ); B: printf( "n=", n ); C: printf( "n=%d", n ); D: printf( "n=%d", &n );
- 以下语句中,不能实现回车换行的是() A: printf("\n"); B: putchar("\n"); C: printf("%s", "\n"); D: putchar('\n');