Multiplication Table
Multiplication Table by Mohit Purohit C O D E Copy Code /* Creator - Mohit Purohit Date - 15 Feb. 2022 Time - 8:00 P.M. */ # include <stdio.h> # include <conio.h> int main () { clrscr(); // Now I declare a variable and this name is 'num'. 'num' means number. // 'num' is a 'int'. 'num' means integer value. int num, restart = 0 ; // Here I use do while loop for restart this program. do { // User enter a number printf ( "Enter the number whose multiplication table you want to get.\n\n" ); scanf ( "%d" , &num); //Presenting Multiplication Table printf ( "\nMultiplication Table of %d is -\n\n" , num); // I am using two methods for...
Comments
Post a Comment