51Testing软件测试论坛

标题: 新人的问题 [打印本页]

作者: sherry1980    时间: 2007-11-20 18:03
标题: 新人的问题
char *a;
        a="aaaaaa";
        lr_output_message ("%s",a);

        char *b;
        b="bbbbb";
        lr_output_message ("%s",b);
这样我编译不通过,
错误提示:
vuser_init.c (7): illegal statement termination
vuser_init.c (7): skipping `char'
vuser_init.c (7): undeclared identifier `b'
vuser_init.c (7): type error: pointer expected
vuser_init.c (8): operands of = have illegal types `int' and `pointer to char'
f:\\bug\\3\\\\combined_3.c (5): 5 errors, not writing pre_cci.ci
但是只有
char *a;
        a="aaaaaa";
        lr_output_message ("%s",a);
是没有问题的!

请问有那位高手知道。
作者: Zee    时间: 2007-11-20 21:30
变量声明要在前面,如下:
     
char *a;
        char *b;
        a="aaaaaa";
        lr_output_message ("%s",a);
        b="bbbbb";
        lr_output_message ("%s",b);


执行结果如下:
Starting iteration 1.
Starting action Action.
Action.c(6): aaaaaa
Action.c(10): bbbbb
Ending action Action.
Ending iteration 1.

作者: sherry1980    时间: 2007-11-21 10:03
char *a;
        char *b;
是不是语法要求一定要放在一起?谢谢了!
作者: lidongmei1106    时间: 2007-11-21 10:42
明白了




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2