把字符串b连接到字符串a后面并输出字符串a 用c语言编译
时间: 2023-12-22 20:05:55 浏览: 96
以下是将字符串b连接到字符串a后面并输出字符串a的C语言代码:
```c
#include <stdio.h>
#include <string.h>
int main() {
char a[100] = "Hello, ";
char b[50] = "world!";
strcat(a, b);
printf("%s", a);
return 0;
}
```
运行结果为:
```
Hello, world!
```
阅读全文