Write a C procram to G.C.D. of two no. using recursion.
#include<stdio.h> #include<conio.h> int gcd(int,int); main() { int a,b,temp,result; printf("\n Enter two numbers"); scanf("%d %d",&a,&b); if(a<b) { temp=a; a=b; b=temp; } result=gcd(a,b); printf("\n The G.C.D=%d",result); getch(); } int gcd(int x,int y) { int rev; rev=x%y; if(rev==0) return(y); else y=gcd(y,rev); }
Output:
Write a C program to multiplication of two matrix.
Eliminate left recursion from the following grammar:
What is linear searching?
Write a C program to addition of two matrices.