Jul-Oct 2024 (12 week course) No. of credits recommended: 3 or 4 - Week-8 , Program-1 · sagnikkkkkkkk/NPTEL-Problem-Solving-Through-Programming-in-C@6976e32
// 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...