You can concatenate multiple strings into one by using the strcat function. Here is how to use it to concatenate three strings:
main.m107 chars6 lines
This code will produce the output: Hello, world! How are you?
.
You can add as many strings as you want inside the strcat
function separated by commas.
gistlibby LogSnag