How to concatenate strings in C

1 Answer

0 votes
#include <stdio.h>
#include <string.h>

int main() {
    char s1[50] = "c c++ ";
    char s2[] = "c# java";
    
    strcat(s1, s2);
    
    printf("%s\n", s1);
    
    return 0;
}



/*
run:

c c++ c# java

*/

 



answered Jan 5, 2021 by avibootz

Related questions

1 answer 165 views
2 answers 207 views
3 answers 242 views
242 views asked Jun 13, 2017 by avibootz
1 answer 145 views
1 answer 153 views
4 answers 342 views
342 views asked May 10, 2021 by avibootz
2 answers 113 views
...