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 Count The Lines, Words, Characters In A Given Text.
Write a C Program That Uses Functions To Delete N – Charactres From A Given Position In A Given String.
Discuss the ACID properties of transaction.
What is Risk? Why Risk Analysis is done?
Write a C program to convert any number into word.