strcat

strcat

文章 0 浏览 3

如何在 C 中正确使用字符串?

Java、Python 等都毁了我。我正在尝试通过响应服务器代码来自动化 FTP 客户端: 例如: // I know this is ugly, please bear with me char username[…

丑丑阿 2024-10-17 02:01:46 4 0

我只是不明白 strcat

我知道我不应该使用该功能,而且我不在乎。上次我检查 strcat 的规范时,它说了一些类似于更新第一个值以及返回相同值的内容。 现在,这是一个非常愚…

意中人 2024-10-12 21:49:38 8 0

连接问题 +伊托阿

我有以下代码: char stringHour[50], stringMinute[50], stringSecond[50]; // lots of code... itoa(hour, stringHour, 10); itoa(minute, stringMi…

幽蝶幻影 2024-10-09 15:07:05 8 0

g++ + strncat:可能会溢出目标缓冲区

我需要在我的 C++ 程序中包含一个 C 函数,当使用 g++ 编译代码时,我收到以下警告: In function ‘char* strncat(char*, const char*, size_t)’, i…

十秒萌定你 2024-10-07 21:10:57 6 0

strcat 分段错误

这里第二次调用 strcat 会产生分段错误,为什么? #include #include #include #include #include #include #include #include int main (int argc, c…

夏雨凉 2024-10-05 02:06:28 4 0

strcat() 中指针的返回如何工作

大家好,我正在尝试弄清楚 strcat() 如何返回指针,因此我尝试实现自己的 strcat() 以了解它是如何工作的。以下是我的 mystrcat() 代码,其工作方式与…

我三岁 2024-09-25 10:51:36 5 0

strcat 的分段错误

我在 strcat 和分段错误方面遇到了一些问题。错误如下: Program received signal EXC_BAD_ACCESS, Could not access memory. Reason: KERN_INVALID_A…

对你的占有欲 2024-09-09 08:04:17 10 0

strcat 实现

我尝试自己实现 strcat,并从 Wiki 找到了 strcat 实现,如下所示。 ....但是当我使用它时,出现分段错误。 下面的代码有什么问题? char * strcat(ch…

一身软味 2024-08-25 19:14:01 9 0

strcat 查询(string.h)

首先: STRCAT : Cplusplus - strcat 当定义清楚地表明: char * strcat ( char * destination, const char * source ); 为什么他们在示例中使用 cha…

允世 2024-08-13 06:21:49 6 0

连接空终止符会导致分段错误

我是 C 新手,最近我遇到了 strcat 函数的问题。 我有一个参数数组,定义如下: #define MAXARGS 10; char *argvalues[MAXARGS]; 我想要的是将数组的…

長街聽風 2024-08-10 01:52:23 10 0

Matlab strcat 函数出现空格问题

我正在尝试实现此目标: strcat('red ', 'yellow ', 'white ') 我期望看到“红黄白”,但是,我在命令输出中看到“redyellowwhite”。需要做什么来确…

倒数 2024-08-04 13:44:27 7 0

字符串将 char* 与 LPCTSTR 连接起来

LPCTSTR Machine=L"Network\\Value"; char s[100]="Computer\\"; strcat(s,(const char*)Machine); printf("%s",s); 在这里,我收到了输出 Computer\N…

所有深爱都是秘密 2024-07-30 17:12:30 12 0

为什么 MSVC++ 考虑“std::strcat” “不安全”? (C++)

当我尝试做这样的事情时: char* prefix = "Sector_Data\\sector"; char* s_num = "0"; std::strcat(prefix, s_num); std::strcat(prefix, "\\"); 等…

我为君王 2024-07-23 01:32:48 13 0
更多

推荐作者

苦中寻乐

文章 0 评论 0

lueluelue

文章 0 评论 0

嗼ふ静

文章 0 评论 0

王权女流氓

文章 0 评论 0

与花如笺

文章 0 评论 0

残酷

文章 0 评论 0

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