Problem :- Write A C Program To Print Multiplication Table Using For Loop .
Logic :- Take a input from user then use an any loop and start with condition =1;condition <=10; and increase by one each time ,and multiply input with condition and print .
Try Yourself C++ Program To Print Table Of Any Given Number
Solution :-
Output:-
Logic :- Take a input from user then use an any loop and start with condition =1;condition <=10; and increase by one each time ,and multiply input with condition and print .
Try Yourself C++ Program To Print Table Of Any Given Number
Solution :-
#include<stdio.h>
int main()
{
int i,a,n;
printf("Enter The Number That You Want To Print Table \n");
scanf("%d",&n);
for(i=1;i<=10;i++)
{
a=n*i;
printf("%d * %d = %d\n", n, i, n*i);
}
return 0;
}
Output:-
sir there is no use of integer a,
ReplyDeletesince you are doing the operation n*i in printf ().
you should remove integer a.