Write a function that will scan a character string passed as an argument and convert all lowercase character into their uppercase equivalents
AA--
C program to convert a lowercase string to uppercase
In this program, we will brief in on the multiple ways to convert a lowercase in C programming.
Write a program to find factorial of a number using recursion
C program to find factorial of a number using recursion
In this program, you will learn to find the factorial of a non-negative integer entered by the user using recursion.
Write a C program to use recursive calls to evaluate F(x) = x – x3 / 3! + x5 / 5 ! – x7 / 7! + … xn/ n!.
Write a function Exchange to interchange the values of two variables, say x and y. illustrate the use of this function in a calling function
In this program we are going to implement exchange of two numbers using function in C programming.