下面程序段的功能是 ()。 #include main() {char s1; s1=putc(getc(stdin),stdout);}
举一反三
- 若输入tc,则程序的运行结果为 【8】 。#include <stdio.h>main() char str[40]; fscanf(stdin,"%s",str); fprintf(stdout,"%s\n",str);
- 下面程序运行后,输出结果是________。#include <stdio.h>void main(){ char s[ ]="father
- 有以下程序 # include<stdio .h> main() { char s[」=”rstuv"; printf(”%c\n”,*s+2); } 程序运行后的输出结果是
- 现有下列程序语句,执行后的结果是( ) #include<stdio.h> void main() char s1[100]="123",s2[100]="qwer"; puts(s1);puts(s2); printf("%s%s",s1,s2); A: 123 qwer B: 123 qwer C: 123 D: qwer E: 123qwer F: 123qwerl23qwer G: 123qwer H: 123qwer
- 现有下列程序语句,执行后的结果是( ) #include<stdio.h> void main() {char s1[100]="123",s2[100]="qwer"; puts(s1);puts(s2); printf("%s%s",s1,s2); } A: 123 qwer 123 qwer B: 123 qwer 123qwer C: 123qwerl23qwer D: 123qwer 123qwer