#include "stdio.h"
#include "conio.h"
int main()
{
char str1[]=asc(20);
char str2[]="SpApp|";
strcat(str1,str2);
printf(str1);
getch();
}
我想编写一个先转换int
为ASCII
代码的程序,然后将其连接SpApp|
并打印c
程序中的值。
虽然printf("%c",20);
也提供了ASCII
转换,但我不知道如何将它保存在另一个中char str1[]
,然后将它与char str2[];