Saved Bookmarks
| 1. |
Write c++ statement to declare an array with size 25 to accept the name of the student |
|
Answer» Answer: int main() { int a[25]; |
|