InterviewSolution
Saved Bookmarks
| 1. |
Find the output of the following after correcting the program? include “stdio.h” include “string.h” main () { char str[80] = “I like c” strcpy (str, “hello”) printf(str) ; } |
|
Answer» rect FORM of the given code is as follows:#include |
|