Courses
Tutorials
Practice
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.4K+ articles
DSA
22.8K+ articles
Misc
8.8K+ articles
Strings
3.3K+ articles
C Language
1.8K+ articles
C Programs
705+ articles
C-Pointers
64+ articles
C-String
57+ articles
c-array
34+ articles
Converted Page to Post
+ articles
C Strings Programs
114+ posts
Recent Articles
Popular Articles
C Program to Replace a Word in a Text By Another Given Word
Last Updated: 11 March 2023
Given three strings 'str', 'oldW' and 'newW'. The task is find all occurrences of the word 'oldW' and replace then with word 'newW'. Examples:Input : str[] = "xxforxx xx f...
read more
Misc
Strings
C Programs
C Language
DSA
C Strings Programs
C Program to Print the Length of a String using Pointers
Last Updated: 05 December 2024
C language provides a built-in function strlen() but in this article, we will learn how to find and print the length of the string using pointers in C.The easiest method t...
read more
Misc
C Programs
C Language
DSA
C-Pointers
C Strings Programs
Concatenating Two Strings in C
Last Updated: 28 November 2024
Concatenating two strings means appending one string at the end of another string. In this article, we will learn how to concatenate two strings in C.The most straightforw...
read more
C Programs
C Language
C-String
C Strings Programs
C Program to Determine the Unicode Code Point at a Given Index
Last Updated: 04 July 2022
Unicode is the encoding mechanism to assign a unique number to each character. The first 128 characters are assigned as ASCII value means Unicode and ASCII value for the f...
read more
C Programs
C Language
Picked
C Strings Programs
C Program To Remove Leading Zeros
Last Updated: 29 July 2022
Here, we will build a C Program to Remove leading zeros with the following 2 approaches:Using for loopUsing strspnTo remove all leading zeros from a number we have to give...
read more
C Programs
C Language
Picked
C Strings Programs
C Program to Split a String into a Number of Sub-Strings
Last Updated: 05 December 2024
In this article, we will learn how to split a string into a number of sub-strings using the C program.The most straightforward method to split a string into substrings usi...
read more
C Programs
C Language
C Strings Programs
C Program to Reverse a String Using Recursion
Last Updated: 15 December 2024
Reversing a string means changing the order of characters in the string so that the last character becomes the first character of the string.In this article, we will learn...
read more
C Programs
C Language
C Strings Programs
Reverse Array in C
Last Updated: 20 November 2024
Reversing an array means the swapping last element and first element, second last element and second element, and so on. In this article, we will learn how to reverse an a...
read more
C Programs
C Language
c-array
C Strings Programs
C Array Programs
C Examples
C Program to Check if String is Pangram
Last Updated: 26 October 2022
Given a string Str. The task is to check if it is Pangram or not. A pangram is a sentence containing every letter in the English Alphabet.Examples: Input: "The quick brown...
read more
C Programs
C Language
C Strings Programs
C/C++ Program for String Search
Last Updated: 22 May 2024
C/C++ Program for Naive Pattern SearchingC/C++ Program for KMP AlgorithmC/C++ Program for Rabin-Karp AlgorithmC/C++ Program for A Naive Pattern Searching QuestionC/C++ Pro...
read more
C Programs
C++ Programs
C Language
C++
C-String
cpp-strings
C Strings Programs
C++ String Programs
How to Create a Dynamic Array of Strings in C?
Last Updated: 22 April 2024
In C, dynamic arrays are essential for handling data structures whose size changes dynamically during the program's runtime. Strings are arrays of characters terminated by...
read more
C Programs
C Language
Picked
C-Arrays
C-Dynamic Memory Allocation
C Strings Programs
C Examples
How to Reverse a String in C?
Last Updated: 17 May 2024
In C, a string is a sequence of characters terminated by a null character (\0). Reversing a string means changing the order of the characters such that the characters at t...
read more
C Programs
C Language
Picked
C-String
C Strings Programs
C Basic Programs
1
2
3
4
5
6
7
8
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !