帮忙看看这个C语言程序,看看哪里错了!谢谢

2024-12-30 23:55:59
推荐回答(2个)
回答1:

#include

char s[]={
'\t',
'0',
'\n',
'}',
';',
'\n',
'\n',
'/',
'*',
'\n',
/*
* 不要下面这一行
* (213 lines deleted)
*/
0
};
/*
*The string is a
*representation of the body
*of this program from '0'
*to the end
*/
main()
{
int i;
printf("char \ts[]={\n");
for(i=0;s[i];i++)
printf("\t%d,\n",s[i]);
printf("%s",s);
}

回答2:

什么东西,说清楚好不好