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