1.

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

Answer»

#include 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



Discussion

No Comment Found