InterviewSolution
Saved Bookmarks
| 1. |
Identify the error in the declaration int 2puc; |
Answer» Question:-IDENTIFY the errors in the FOLLOWING code. Answer:-GIVEN code, int 2puc; As we know that identifier name should not start with a digit, so the given VARIABLE DECLARATION is invalid. Errors are marked here:- int 2puc; |
|