如题目或答案有误,请通过BUG反馈告知我们修正,谢谢!
12
8
7
11
14
3
9
字符串中有非法字符
void fun (int x, int y);
fun (int x, int y);
int fun (int x,y);
char *fun (char *s);
\"c:\\abc.dat\"
"c:\abc.dat"
"c:\\abc.dat"
b=a/2
b=6-(--a)
b=a%2
b=a>3?2:1
宏替换只是字符替换
宏名无类型
宏替换不占用运行时间
宏替换不占用编译时间
enum a={one,two,three};
enum a{one=9,two=-1,three};
enum a={″one″,″two″,″three″};
enum a{″one″,″two″,″three″};
10<回车>22<回车>33<回车>
10.0,22.0,33.0<回车>
10.0<回车>22.0 33.0<回车>
10 22<回车>33<回车>
p+=2,*(p++)
p+=2,*++p
p+=3,*p++
p+=2,++*p
2 1 4 3
1 2 1 2
1 2 3 4
2 1 1 2
提交答案
推荐工具