Q:

C program to print table of a given number using goto statement

0

C program to print table of a given number using goto statement

Give a number (N) and we have to print its table using C program.

goto is a jumping statement, which transfers the program’s control to specified label, in this program we will print the table of a number that will be taken by the user.

Example:

Input: 10

Output:
10*1=10
10*2=20
10*3=30
10*4=40
10*5=50
10*6=60
10*7=70
10*8=80
10*9=90
10*10=100

 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program to print table of N using goto statement in C

#include<stdio.h>

int main()
{
	//declare variable
	int count,t,r;

	//Read value of t
	printf("Enter number: ");
	scanf("%d",&t);

	count=1;

	start:
	if(count<=10)
	{
		//Formula of table
		r=t*count;
		printf("%d*%d=%d\n",t,count,r);
		count++;
		goto start;
	} 

	return 0;
}

Output

Enter number: 10 
10*1=10
10*2=20
10*3=30
10*4=40
10*5=50
10*6=60
10*7=70
10*8=80
10*9=90
10*10=100

This is how we can print table of N using goto statement? If you liked or have any issue with the program, please share your comment.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C program to read a name and print its 10 times us... >>
<< C program to print table of 2 using goto statement...