字符串之间打印空格

字符串之间打印空格

Closed. This question needs details or clarity。它当前不接受答案。
                            
                        
                    
                
                            
                                
                
                        
                            
                        
                    
                        
                            想改善这个问题吗?添加详细信息并通过editing this post阐明问题。
                        
                        3年前关闭。
                                                                                            
                
        
如何在C语言中使用strcat()函数在两个字符串之间打印空格?

最佳答案

你可以做这样的事情。

strcat(string1, " ");
strcat(string1, string2);


或者,仅一行。

strcat(strcat(string1, " "),string2)


这两个片段实际上是相同的!

关于c - 使用strcat()函数时在字符串之间打印空格,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42181130/

10-12 23:35