Computer Science, asked by princepawar359, 5 months ago

Draw an flowchart and algorithm to print your name 10 time loop has to be need​

Answers

Answered by tseries12345678901
0

Answer:

#include <stdio.h>

int main()

{

int count;

char name[50];

printf("Enter the name: ");

scanf("%s", name);

count=1;

start:

printf("%s ", name);

count++;

if(count<=10)

goto start;

return 0;

}

Language: C

Output: returns the user input ten times

Similar questions