#include <stdio.h>
int main()
{
int n = 5;
int j;
for(j=1; j<=5; j++){
printf("* ");
}
printf("\n");
return 0;
}
Output:
sh-4.2$ gcc -o main *.c
sh-4.2$ main
* * * * *
Get Answers For Free
Most questions answered within 1 hours.