0
2.2kviews
write a program in C++ to calculate sum of 10 float number using pointer
1 Answer
| written 3.6 years ago by | • modified 3.6 years ago |
The below C++ program creates the following things:
10 variables named "n1 to n10" to store 10 float numbers.
10 Pointer variables named "ptr1 to ptr10" to store the address of these 10 float numbers.
One float variable …