Predict the outcome of the following C program: #include…
Predict the outcome of the following C program: #include#includeint main(){ char word[] = “Successful”; char suffix[] = {‘l’, ‘y’, ‘\0’}; char buffer[15]; strcpy(buffer, word); strcat(buffer, suffix); strcat(buffer, “!”); printf(“%s”, buffer); return 0;}
Read Details