Print first occurrence of a character in a string
Write a C program to Print first occurrence of a character in a string. Here’s simple C program to find first occurrence of a character in a string in C Programming Language.
C – Strings :
Strings are actually one-dimensional array of characters terminated by a null character ‘\0’. Thus a null-terminated string contains the characters that comprise the string followed by a null.
String is a sequence of characters. char
data type is used to represent one single character in C. So if you want to use a string in your program then you can use an array of characters.
The declaration and definition of the string using an array of chars is similar to declaration and definition of an array of any other data type.
Any string ends with a terminating null character ‘\0’. An array definition in such a way should include null character ‘\0’ as the last element.
Here is source code of the C program to Print first occurrence of a character in a string. The C program is successfully compiled and run(on Codeblocks) on a Windows system. The program output is also shown in below.
SOURCE CODE : :
/* C program to Print first occurrence of a character in a string */ #include <stdio.h> #include <string.h> #define MAX_SIZE 100 /** Function declaration */ int indexOf(const char * text, const char toFind); int main() { char text[MAX_SIZE]; char toFind; int index; /* * Reads a string from user and character to be searched */ printf("\nEnter any string: "); gets(text); printf("\nEnter character to be searched: "); toFind = getchar(); index = indexOf(text, toFind); if(index == -1) { printf("\n'%c' not found.\n", toFind); } else { printf("\nIndex of ['%c'] is [ %d ].\n", toFind, index); } return 0; } /** * Finds the first index of the given character toFind in the string text. */ int indexOf(const char * text, const char toFind) { int index = -1; int i, len; len = strlen(text); for(i=0; i<len; i++) { if(text[i] == toFind) { index = i; break; } } return index; }
Output:
/* C program to Print first occurrence of a character in a string */ Enter any string: Hello CodezClub Enter character to be searched: C Index of ['C'] is [ 6 ]. Process returned 0
Above is the source code for C program to Print first occurrence of a character in a string which is successfully compiled and run on Windows System.The Output of the program is shown above .
If you found any error or any queries related to the above program or any questions or reviews , you wanna to ask from us ,you may Contact Us through our contact Page or you can also comment below in the comment section.We will try our best to reach up to you in short interval.
Thanks for reading the post….