This program is about print the tables using For Loop
#include<stdio.h> int main() { int i,n,m,a; printf("\nEnter the limit:"); scanf("%d",&n); printf("\nEnter the table number:"); scanf("%d",&a); for(i=1;i<=n;i++) { printf("\n%d*%d=%d",i,a,i*a); } return 0; }To download raw file Click Here
Enter the limit:8 Enter the table number:2 1*2=2 2*2=4 3*2=6 4*2=8 5*2=10 6*2=12 7*2=14 8*2=16
Learn All in Tamil © Designed & Developed By Tutor Joes