C “即时”追加/连接字符串
我认为可以在 C 中动态连接字符串(字符数组)。
char* str1= "hello" " " "world";
但是当我尝试以下操作时,我会收到一条错误消息(函数 fopen 的参数太少)。为什么?
fopen(*argv ".comp", "r");
我想用 char[] 常量连接参数 - 没有 strcat 间接。这可能吗?
就像 PHP 中的“string”.$var 或 Java 中的“a string like this”+ var
I thought it's possible to concatenate strings (char arrays) in C on the fly.
char* str1= "hello" " " "world";
But when I try the following I'll receive an error message (Too few arguments to function fopen). why?
fopen(*argv ".comp", "r");
I want to concat the argument with an char[] constant - without the strcat indirection. Is this possible?
Like the "string".$var in PHP or the "a string like this" + var in Java
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只能在编译时连接字符串文字。
因为编译器不知道
*argv
会是什么。You can only concatenate string literals at compile time.
Because compiler has no idea what
*argv
is going to be.