InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is the correct output for the program given below? #includevoid main(){printf(5+"fascimile\n");} |
|
Answer» mileExplanation:In PRINTF(5+"fascimile\n") the 5+ means the FIRST 5 characters of the string (fasci) will be OMITTED and other characters will be printed.Hope this HELPS! |
|