// Simple multiplication Program
#include<stdio.h>
main()
{
int n,i;
printf("Enter any Integer Num:");
scanf("%d",&n);
for(i=1;i<=10;i++)
{
printf("%d * %d= %d\n",n,i,n*i);
}
return 0;
}
Output of Program
Developers Are Born Here!
Subscribe For New Post Notifications
No comments: