Q:

C program to print table of 2 using goto statement

0

C program to print table of 2 using goto statement

Give a number (2) 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 2.

Example:

Input: 2 (given in the program)

Output:
2*1=2
2*2=4
2*3=6
2*4=8
2*5=10
2*6=12
2*7=14
2*8=16
2*9=18
2*10=20

All Answers

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

Program to print table of 2 using goto statement in C

#include<stdio.h>

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

	//assign 2 to the variable 't'
	t =2;

	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

2*1=2
2*2=4
2*3=6
2*4=8
2*5=10
2*6=12
2*7=14
2*8=16
2*9=18
2*10=20

This is how we can print table of 2 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 print table of a given number using g... >>
<< C program to print all numbers from N to 1 using g...