// Week-8 , Program-1 // Write a C Program to find HCF of 4 given numbers using recursive function // Write a C Program to find HCF of 4 given numbers using recursive function . 0 comments on commit 6976e32 Please sign in to comment. Footer...
// Week-8 , Program-4 // Write a C Program to reverse a given word using function. e.g. INDIA should be printed as AIDNI #include<stdio.h> #include<string.h> void reverse(char[], int, int); int main() { char str1[20]; scanf("%s", str1); //The stri...