strcat

strcat

文章 0 浏览 3

如何在 MATLAB 中连接字符串

我尝试执行以下操作: fname = strcat('C:\Users\user_name\work\video\',avi_name); videoObject = VideoReader(fname); 我收到一条错误消息: Argum…

你又不是我 2024-12-10 01:40:55 0 0

strcpy 和 strcat 有时会出现问题

你好,我有一个像下面这样的代码 char *str ; strcpy(str, "\t<"); strcat(str, time); strcat(str, ">["); strcat(str, user); strcat(str, "]"); st…

护你周全 2024-12-02 03:51:26 1 0

使用 crt 在线性时间内连接 C 字符串

假设我们想要将 const char *s[0], s[1], ... s[n-1] 连接成 C 中的一个 long char out[]。 ): void concatManyStrings(char out[], const char *s[…

可爱暴击 2024-12-01 20:06:46 1 0

如何将 char 连接到常量 char*?

我有一个函数连接两个常量 char* 并返回结果。我想做的是将 char 连接到常量 char* 例如 char *command = "nest"; char *halloween = join("hallowee"…

三生路 2024-11-30 17:15:00 2 0

strcat 古怪的行为

我编写了这个简单的 C 程序,但不太明白 strcat long sum(long col, char* path, char* path2){ printf("%s\n",path2); strcat(path,".endlines"); pr…

风柔一江水 2024-11-30 05:33:50 1 0

Matlab字符到字符串的转换问题。使用什么功能?

x = 1234 56789 7654 x(1) 是 1,x(2) 是 2 等等...中间有 5 个空格.. 尺寸(x) = 1 23 1行23列 我尝试过使用 num2str、strcat 但我无法合并数字。 y =…

挥剑断情 2024-11-28 22:45:23 1 0

如何在 C 编程中 strcat OPENFILENAME 参数

我有一个使用 OPENFILENAME 的工作代码。我可以知道如何使用 strcat 动态控制其参数吗? 这个正在工作 //ofn.lpstrFilter = "Rule Files (*.net and *…

韬韬不绝 2024-11-14 12:50:13 3 0

字符串在没有赋值的情况下连接到另一个字符串,这是为什么?

下面是程序中的一个函数: //read the specified file and check for the input ssn int readfile(FILE *fptr, PERSON **rptr){ int v=0, i, j; char …

我们只是彼此的过ke 2024-11-09 08:35:35 3 0

使用 strcat 附加字符数组不起作用

有人可以告诉我这段代码有什么问题吗??? char sms[] = "gr8"; strcat (sms, " & :)"); …

心如狂蝶 2024-11-06 15:38:53 5 0

连接字符串后出现 Malloc() 内存损坏错误

伙计们,我正在生成一个字符串,它表示文件的路径,连接宏和字符串。函数是这样的: char *userPath(char *username) { char *path = (char*)malloc(s…

メ斷腸人バ 2024-11-04 14:01:16 5 0

为什么是“strcat”?被认为“不安全”?

可能的重复: 为什么 MSVC++ 认为“std::strcat”“不安全” ”? (C++) 这是我的代码: char sentence[ 100 ] = ""; char *article[ 5 ] = { "the…

一笔一画续写前缘 2024-11-04 02:12:08 2 0

const char * 与 const wchar_t* (串联)

这是最好的连接方式? const char * s1= "\nInit() failed: "; const char * s2 = "\n"; char buf[100]; strcpy(buf, s1); strcat(buf, initError); s…

童话里做英雄 2024-10-30 07:55:42 9 0

如何将 strcat 与 ENUM 一起使用?

我有一个外部工具,它根据用户输入生成 ENUM。现在我的 C++ 代码正在使用这个 ENUM,其中我必须根据变量“x”选择特定的 ENUM。生成的 ENUM 的形式为…

不交电费瞎发啥光 2024-10-28 00:08:07 3 0

C:一种更安全的方法来检查函数中的缓冲区并附加到它?

我有一个函数,我需要返回另一个日志函数的时间,它看起来像这样: //put time in to buf, format 00:00:00\0 void gettimestr(char buf[9]) { if(str…

梦旅人picnic 2024-10-24 12:35:11 7 0

从字符串的可选点删除一个字符

我想从 c lang 中字符串的可选点删除一个字符。我想通过指针和 strcat() 函数编写这个程序。请指导我 谢谢大家…

醉生梦死 2024-10-20 10:14:25 3 0
更多

推荐作者

胡图图

文章 0 评论 0

zt006

文章 0 评论 0

z祗昰~

文章 0 评论 0

冰葑

文章 0 评论 0

野の

文章 0 评论 0

天空

文章 0 评论 0

更多

友情链接

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文