Saved Bookmarks
| 1. |
Write C++ examples for the following: 1. Declaration statement 2. Assignment statement 3. Type casting |
|
Answer» 1. int age; 2. age = 16; 3. avg = (float)a + b + c/3; |
|