- 2
C program that prints your name five times on the screen
Create a c program that prints your name five times on the screen.
1 Respuesta
0
Write for loop to solve your problem
for (int i ; i<5 ; i++)
Create a c program that prints your name five times on the screen.