Search Blog

Wednesday, March 9, 2022

How To Get Multiplication Table of Any Number?

            Here We Will Learn To Program C. I'll try To give my Best To Make you understand.

                                                               "Let's Begin"

A Programme to Get Multiplication Table of 
Any Numbers.

Now I Will only Make to guys understand only the New Function. To Understand other thing 
Please Check My other BLOGS.

Here we have taken Input 'a'using 'scanf("%d",&a);'.
Now loop is run 10 Times from i=1 to i<=10(10 is included).
Inside Then loop print Function and An Operation is used'printf("%dx%d=%d",a,b,a*b);'.
!st %d will print a,2nd %d willl print b and 3rd %d will print a*b.

                                                                                     
                                     

OUTPUTS
   
Download Link Of Above Programme:-

How to Use it.
Download File >Go To Turboc3(or turboc folder)>bin>Paste File>
open Turbo c Application>File>open(or F3)>Select File
 
NOTE:- Above File Can Be Opened With Other Compilers(Like code blocks, visual studio, etc.), Some Changes Might Require.

THANKS


   

No comments:

Post a Comment

How to Add Two Array(or Matrix) ?

    Here We Will Learn To Program C. I'll try To give my Best To Make you understand.                                                   ...