InterviewSolution
Saved Bookmarks
| 1. |
Briefly explain how to write a C program. |
|
Answer» In writing a C program one style should be used and there should be consistency. Lower case letters are used to write a program. Group program statements are written together. Braces used to mark the beginning and end of the function. C is free from language, one can group statements together on same line. However, this make the program more difficult to understand. |
|