Skip to content
Xiith
  • Home
  • C
  • C++
  • C#
  • Java
  • Python
  • Kotlin
  • R
  • Go
  • JavaScript
  • About us
Search this website
Menu Close
  • Home
  • C
  • C++
  • C#
  • Java
  • Python
  • Kotlin
  • R
  • Go
  • JavaScript
  • About us

C Program to concatenate two strings using strcat function

In this program, You will learn how to concatenate two strings using strcat function in c. strcat(str1, str2); Example: How to concatenate two strings using strcat function in c. #include<stdio.h>…

Continue ReadingC Program to concatenate two strings using strcat function

C Program to check string is palindrome or not

In this program, You will learn how to check string is palindrome or not in c. Some palindrome string example: madam, mam, dad Example: How to check string is palindrome…

Continue ReadingC Program to check string is palindrome or not

C Program to reverse a string without using library function

In this program, You will learn how to reverse a string without using library function in c. abcd => dcba Xiith => htiiX Example: How to reverse a string without…

Continue ReadingC Program to reverse a string without using library function

C Program to find duplicate characters in a string

In this program, You will learn how to find duplicate characters in a string in c. int main(){ //statement } Example: How to find duplicate characters in a string in…

Continue ReadingC Program to find duplicate characters in a string

C Program to copy one string to another without using library functions

In this program, You will learn how to copy one string to another without using library functions in c. strcpy(str2, str1); Example: How to copy one string to another without…

Continue ReadingC Program to copy one string to another without using library functions

C Program to copy string using strcpy function

In this program, You will learn how to copy string using strcpy function in c. strcpy(str2, str1); Example: How to copy string using strcpy function in c. #include<stdio.h> #include<string.h> int…

Continue ReadingC Program to copy string using strcpy function

C Program to delete consonants from a string

In this program, You will learn how to delete the occurrences of consonants from a string in c. #include<stdio.h> #include<string.h> int main() { //statement } Example: How to delete consonants…

Continue ReadingC Program to delete consonants from a string

C Program to delete vowels from a string

In this program, You will learn how to delete the occurrences of vowels from a string in c. String: Xiith After removing vowels: Xth Example: How to delete vowels from…

Continue ReadingC Program to delete vowels from a string

C Program to count the number of vowels and consonants in a string

In this program, You will learn how to count the number of vowels and consonants in a string in c. Learn Java Total vowels are: 4 Total consonants are: 5…

Continue ReadingC Program to count the number of vowels and consonants in a string

C Program to find the length of a string without using strlen function

In this program, You will learn how to find the length of a string without using strlen function in c. int len = strlen( str ); Example: How to find…

Continue ReadingC Program to find the length of a string without using strlen function
  • Go to the previous page
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • …
  • 12
  • Go to the next page

Xiith is created for educational, experimental, and schooling purpose. Examples on Xiith are made easier to make a better or basic understanding. Tutorials, testimonials, and examples are continuously checked to avoid delusion, but we cannot take complete responsibility of all programs on Xiith. When you are operating this site, you have to agree to read and accept our terms of use, cookie and privacy policy. Copyright © 2021 by Xiith. All Rights Reserved. About us.