char*fun(char*s,char*t)
时间: 2023-12-22 12:03:41 浏览: 291
浅谈char*类型返回值和字符串常量
根据提供的引用内容,函数`char*fun(char*s,char*t)`的形参`s`和`t`分别为指向字符的指针,函数返回值为指向字符的指针。其中,形参`t`的类型为`const char*`,表示`t`指向的字符是只读的,不能被修改。函数的具体实现需要根据具体需求进行编写。
举个例子,如果我们需要将字符串`t`拼接字符串`s`的末尾,可以使用以下代码实现:
```c
#include <stdio.h>
#include <string.h>
char* fun(char* s, const char* t) {
strcat(s, t);
return s;
}
int main() {
char s[100] = "hello, ";
const char* t = "world!";
printf("%s\n", fun(s, t)); // 输出:hello, world!
return 0;
}
```
阅读全文