Write C program to print multiplication table of a given number
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #include <stdio.h> int main() { int i, num; //Reading number printf("Enter number to print table: "); scanf("%d", &num); for(i=1; i<=10; i++) { //Printing table of number entered by user printf("%d x %d = %d\n", num, i, (num*i)); } return 0; } |
28 June 2019 1536 Written By: Rohit
© 2020 Tech Study. All rights reserved | Developed by Tech Study| Privacy Policy | Sitemap