题目内容
2.以下程序运行后的输出结果是 ____ 。#include#include #includemain(){ char *p; int i;p=(char*)malloc(sizeof(char)*20);strcpy(p,"welcome");for(i=6;i>=0;i--)putchar(*(p+i));printf("\n"); free(p);}
查看答案
搜索结果不匹配?点我反馈