/* * LAB13.C: formatting string output * * Preprocessor directives */ #include #include /* contains C string processing functions */ #include \n"); scanf("%s", str1); printf("The string right-justified: %15s\n", str1); printf("The string left-justified: %-15s\n", str1); /* Add your statements here */ printf("Termination of LAB13.C"); return(0); }