In this section, you will learn how to get the substring from a string in C. You can see in the given example, a string and a method substring() is created. Inside the method, we have declared the variables i and j to select the part of the string in order to get the substring. On calling the method substring(6,19,ch), you will get the substring from the specified string. Here 6 and 19 are the starting and ending index values of the string.
Here is the code:
SUBSTRIN.C
#include <stdio.h>
|
Output will be displayed as:
SUBSTRIN.EXE
![]()
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: C String Substring View All Comments
Post your Comment