以下程序的输出结果是:( )。 main() { char st[20]="hello\0\t\\"; printf("%d%d\n",strlen(st),sizeof(st)); }
举一反三
- 中国大学MOOC: 下面程序输出结果为:#include<iostream>using namespace std;#include<string.h>int main( ){ char st[20]="hello\0\t\\"; cout<<strlen(st); cout<<sizeof(st)<<endl; cout<<st; return 0;}
- 若有char st[20]="hello "; ,则执行printf("%d,%d ",strlen(st),sizeof(st)); 后的输出结果为()
- 以下程序的输出结果______。 main() { char st[20]="he11\O\t\"; printf("%d%d\n",str1en(st),sizeof(st)); } A: 99 B: 520 C: 1320 D: 2020
- 以下程序的输出结果()。void main(){ char st[20]="hello\073\\\n"; printf("%d",strlen(st));} A: 5 B: 7 C: 8 D: 9
- 以理程序的输出结果()。 main() char st[20]="he11\O\t\\"; printf("%d%d\n",str1en(st),sizeof(st)); A: 99 B: 520 C: 1320 D: 2020