Printing addition table of the given number

Program:

#include<stdio.h>
#include<conio.h>
void main()
{
    int i, t, n;
    clrscr();
    printf("Enter the table : ");
    scanf("%d", &amp;t);
    printf("\nEnter the limit : ");
    scanf("%d", &amp;n);
    printf("\nThe table is :\n\n");
    for(i = 1 ; i <= n ; i++)
    printf("%4d + %4d = %4d\n", i, t, i + t);
    getch();
}

Output:

Enter the table : 5
Enter the limit : 15
The table is :
1 + 5 = 6
2 + 5 = 7
3 + 5 = 8
4 + 5 = 9
5 + 5 = 10
6 + 5 = 11
7 + 5 = 12
8 + 5 = 13
9 + 5 = 14
10 + 5 = 15
11 + 5 = 16
12 + 5 = 17
13 + 5 = 18
14 + 5 = 19
15 + 5 = 20