Write a program to print the table of a number entered by the user, using Go to statement
Answers
Answered by
0
Answer:
include <stdio.h>
int main()
{
int num,i=1;
printf("Enter the number whose table you want to print?" );
scanf("%d",&num);
table:
printf("%d x %d = %d\n",num,i,num*i);
Similar questions