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];

COUT<

GETS(a);

;



Discussion

No Comment Found