InterviewSolution
Saved Bookmarks
| 1. |
Symbol is used to terminate each stament of c |
|
Answer» ong>Answer: in any PROGRAMMING language statement can be TERMINATED by using semicolon(;) symbol like printf(“enter the NUMBERS”); we can also USE this symbol while declaring VARIABLES,or using in loop etc . ... In “C” every input statement and output reader statement i.e.., printf and scanf should be terminated with “;” semicolon. |
|