Generation of multiplication table of user inputted number!


#include<stdio.h>
#include<conio.h>
void main()
{
   int i,m,a;
   printf("enter the no :");
   scanf("%d",&a);
   printf("multiplication table of %d is:\n",a);
   for(i=1;i<=10;i++)
   {
      m= a*i;
       printf("%d * %d= %d\n",a,i,m);
   }
getch();
}


SHARE

Milan Tomic

Hi. I’m Designer of Blog Magic. I’m CEO/Founder of ThemeXpose. I’m Creative Art Director, Web Designer, UI/UX Designer, Interaction Designer, Industrial Designer, Web Developer, Business Enthusiast, StartUp Enthusiast, Speaker, Writer and Photographer. Inspired to make things looks better.

  • Image
  • Image
  • Image
  • Image
  • Image
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment