#include #include int main (){ char str[80]; strcpy (str,"part I, "); strcat (str,"part II, "); strcat (str,"part III."); puts (str); return 0;}