Write a function that will scan a character string passed as an argument and convert all lowercase character into their uppercase equivalents

Write a function that will scan a character string passed as an argument and convert all lowercase character into their uppercase equivalentsAA--C program to convert a lowercase string...
November 26, 2021

Write a program to find factorial of a number using recursion

Write a program to find factorial of a number using recursionC program to find factorial of a number using recursionIn this program, you will learn to find the...
November 19, 2021

Write a C program to use recursive calls to evaluate F(x) = x – x3 / 3! + x5 / 5 ! – x7 / 7! + … xn/ n!

Write a C program to use recursive calls to evaluate F(x) = x – x3 / 3! + x5 / 5 ! – x7 / 7! + …...
November 19, 2021

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

Write a function Exchange to interchange the values of two variables, say x and y. illustrate the use of this function in a calling functionIn this program we...
November 14, 2021

Write a function in the program to return 1 if number is prime otherwise return 0

Write a function in the program to return 1 if number is prime otherwise return 0A prime number is natural number greater than 1 that has no positive...
October 05, 2021

Write a program that defines a function to add first n numbers

Sum of first N natural numbers in CAs we know natural numbers contain all the positive numbers starting from 1, 2, 3, to n numbers or infinity. For...
September 18, 2021

Write a program to convert string into upper case

Write a program to convert string into upper caseHere is the program to convert a string to uppercase in C language,In the program, the actual code of conversion...
September 11, 2021