如题目或答案有误,请通过BUG反馈告知我们修正,谢谢!
void play(var :Integer,var b:Integer)
void play(int a,b)
void play(int a,int b)
Sub play(a as integer,b as integer)
1
3
5
7
36
24
18
20
*(w[0]+2)
*(pw+1)[2]
pw[0][0]
*(pw[1]+2)
12
8
11
无限次
有语法错,不能执行
一次也不执行
执行1次
0
表达式语法有错
C语言程序总是从第一个定义的函数开始执行
在C语言程序中,要调用的函数必须在main()函数中定义
C语言程序总是从main()函数开始执行
C语言程序中的main()函数必须放在程序的开始部分
char b[10]={'H','e','l','l','o','!'};
char b[10]; b="Hello!";
char b[10]; strcpy(b,"Hello!");
char b[10]="Hello!";
x/y*z
x*(1/(y*z))
x/y*1/z
x/y/z
提交答案
推荐工具