Showing posts from 2020Show all

program to search for a character in a string

C program to search for a character in a string #include <stdio.h> int main ()…

Read more

Advantages and Disadvantage of recursion

Advantage of Recursion As we know, a program that can be executed using the recursive fu…

Read more

Recursion in c

Recursion in c A function calling itself in the body of the same function is called as re…

Read more

C Program to reverse the words present in the string

C Program to reverse the words present in the string.  #include <stdio.h> #inclu…

Read more

C Program to reverse the letters in each word of the string

C Program to reverse the letters in each word of the string We will see two methods : 1…

Read more

C program to reverse the string

C program to reverse the string We will see two methods to reverse the string 1. Reverse …

Read more

c program to convert temperature from celsius to fahrenheit and vice versa

C program to convert temperature from celsius to fahrenheit and vice versa // Online …

Read more

C string concatenation

C program to concatenate Two strings Concatenation refers to the linking of two strings i…

Read more