InterviewSolution
Saved Bookmarks
| 1. |
Write the steps involved in executing a C program. |
|
Answer» Steps involved in executing a C program are: (i) creating a program (ii) compiling the program (iii) linking the program with functions needed from C library and finally (iv) executing the program. |
|