Write a C program to find the multiplication table of any no.
#include<stdio.h> #include<conio.h> main() { int n,i=1; printf("\n Enter any number"); scanf("%d",&n); while(i<=10) { printf("\n %d * %d = %d",n,i,n*i); i++; } getch(); }
Output:
Write a C procram to G.C.D. of two no. using recursion.