[填空题] 以下程序运行后输出的结果是______。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
main()
char *p; int i;
p= (char *)malloc(sizeof(char)*20);
strcpy(p, "welcome");
for (i=6; i>=0; i--) putchar(*(p+i));
printf("");free(p);
正确答案:emoclew

[填空题] 以下程序运行后输出的结果是______。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
main()
char *p; int i;
p= (char *)malloc(sizeof(char)*20);
strcpy(p, "welcome");
for (i=6; i>=0; i--) putchar(*(p+i));
printf("");free(p);
正确答案:emoclew
上一篇 [填空题] 在窗体上画一个命令按钮,然后编写如下事件过程: Private Sub Command1
下一篇 [填空题] 在窗体上画一个名称为Command1的命令按钮,然后编写如下程序: Private Sub Command1