Intermediate Part II Problem: Make a program that print the table. #include
#include <stdio.h> void main() { clrscr(); int tableNo; // Variable Decleration printf("Enter the Table no that you want to Print: "); scanf("%d",&tableNo); // Variable Input from User for(int i=1;i<=10;i++) printf("%d * %d = %d\n",tableNo,i,tableNo*i); getch(); }
Click the link below to see more examples URL: http://ravianeducation.blogspot.com E-Mail: [email protected] Farhan: 03008855006