
Patrick B. answered 05/20/19
Tutor
4.7
(31)
Math and computer tutor/teacher
You don;t even need string.h
#include <stdio.h>
int main()
{
char outbuff[255];
sprintf(outbuff, "%s : %s : %s : %s ","This is string #1","This is string #2","This is string #3","This is stirng #4");
printf(outbuff);
}