Computer Science, asked by sushantpal2075, 3 months ago

write a
programe to display multiplaca
tion table of the number given by the
user

Answers

Answered by badgirl5887
1

Answer:

#include <stdio.h>

int main() {

int n, i;

printf("Enter an integer: ");

scanf("%d", &n);

for (i = 1; i <= 10; ++i) {

printf("%d * %d = %d \n", n, i, n * i);

}

return 0;

}

Explanation:

c++ is the worst to do but ya the easy ones I know so.... here

Similar questions