Code Snippets C

#include
#include
int main ()
{
char str[80];
strcpy (str,"string a, ");
strcat (str,"string b, ");
strcat (str,"string c.");
puts (str);
return 0;
}