Multiplication table of a given number in C++
#include stdio.h int main() { int num, i = 1; printf(“n Enter any Number:”); scanf(“%d”, &num); printf(“Multiplication table of %d: n”, num); while … Read More
#include stdio.h int main() { int num, i = 1; printf(“n Enter any Number:”); scanf(“%d”, &num); printf(“Multiplication table of %d: n”, num); while … Read More