中国大学MOOC:"写出下面程序的输出结果#include int main()..., b) ; return 0; }";
举一反三
- 请写出以下程序的运行结果#include int main() { printf(Hello World! ); return 0; }
- 中国大学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;}
- 下面程序运行后的输出结果是____。 #include <stdio.h> int main() { printf("%d ", NULL); return 0; }
- 1、写出下列程序的输出结果 #include [iostream] using namespace std; int b=2; int func(int *a) { b+=*a; return(b); } int main( ) { int a=2,res=2; res+=func(&a); cout<<res<<endl; return 0; }
- 读下列程序,写出程序的输出结果。 #include void main() { int k=4, n=0; for (;n 3,3