Basic Strings in C Programming | Programming and Data Structures - Computer Science Engineering (CSE) PDF Download

Strings are actually one-dimensional array of characters terminated by a null character ''. Thus a null-terminated string contains the characters that comprise the string followed by a null.

The following declaration and initialization create a string consisting of the word "Hello". To hold the null character at the end of the array, the size of the character array containing the string is one more than the number of characters in the word "Hello."

char greeting[6] = {'H', 'e', 'l', 'l', 'o', ''};

If you follow the rule of array initialization then you can write the above statement as follows −

char greeting[] = "Hello";

Following is the memory presentation of the above defined string in C/C++ −

C,CSE,Strings,Programming Langauge,GATE

Actually, you do not place the null character at the end of a string constant. The C compiler automatically places the '' at the end of the string when it initializes the array. Let us try to print the above mentioned string −

#include <stdio.h>

int main () {

char greeting[6] = {'H', 'e', 'l', 'l', 'o', ''};
printf("Greeting message: %s
", greeting );
return 0;
}

When the above code is compiled and executed, it produces the following result −

Greeting message: Hello

C supports a wide range of functions that manipulate null-terminated strings −

S.N.Function & Purpose
1

strcpy(s1, s2);

Copies string s2 into string s1.

2

strlen(s1);

Returns the length of string s1.

3

strcmp(s1, s2);

Returns 0 if s1 and s2 are the same; less than 0 if s1<s2; greater than 0 if s1>s2.

4

strchr(s1, ch);

Returns a pointer to the first occurrence of character ch in string s1.

5

strstr(s1, s2);

Returns a pointer to the first occurrence of string s2 in string s1.

6

strstr(s1, s2);

Returns a pointer to the first occurrence of string s2 in string s1.

The following example uses some of the above-mentioned functions −

#include <stdio.h>
#include <string.h>

int main () {

char str1[12] = "Hello";
char str2[12] = "World";
char str3[12];
int len ;

/* copy str1 into str3 */
strcpy(str3, str1);
printf("strcpy( str3, str1) : %s
", str3 );

/* concatenates str1 and str2 */
strcat( str1, str2);
printf("strcat( str1, str2): %s
", str1 );

/* total lenghth of str1 after concatenation */
len = strlen(str1);
printf("strlen(str1) : %d
", len );

return 0;
}

When the above code is compiled and executed, it produces the following result −

strcpy( str3, str1) :  Hello
strcat( str1, str2): HelloWorld
strlen(str1) : 10
The document Basic Strings in C Programming | Programming and Data Structures - Computer Science Engineering (CSE) is a part of the Computer Science Engineering (CSE) Course Programming and Data Structures.
All you need of Computer Science Engineering (CSE) at this link: Computer Science Engineering (CSE)
119 docs|30 tests

Top Courses for Computer Science Engineering (CSE)

FAQs on Basic Strings in C Programming - Programming and Data Structures - Computer Science Engineering (CSE)

1. What is a string in C programming?
Ans. A string in C programming is a sequence of characters stored in consecutive memory locations. It is represented by an array of characters terminated by a null character '\0'. Strings are used to store and manipulate textual data in C.
2. How to declare and initialize a string in C programming?
Ans. To declare and initialize a string in C programming, we can use the following syntax: ``` char str[] = "Hello World"; ``` This declares a character array named `str` and initializes it with the string "Hello World". The size of the array is determined automatically based on the length of the string.
3. How to concatenate two strings in C programming?
Ans. In C programming, we can concatenate two strings using the `strcat()` function. The `strcat()` function takes two arguments - the destination string and the source string. It appends the source string to the end of the destination string. Here's an example: ``` char str1[20] = "Hello"; char str2[] = " World"; strcat(str1, str2); ``` After concatenation, the value of `str1` will be "Hello World".
4. How to find the length of a string in C programming?
Ans. We can find the length of a string in C programming using the `strlen()` function. The `strlen()` function takes a string as an argument and returns the number of characters in the string (excluding the null character '\0'). Here's an example: ``` char str[] = "Hello"; int length = strlen(str); ``` The value of `length` will be 5.
5. How to compare two strings in C programming?
Ans. We can compare two strings in C programming using the `strcmp()` function. The `strcmp()` function takes two strings as arguments and returns an integer value indicating the result of the comparison. Here's an example: ``` char str1[] = "Hello"; char str2[] = "World"; int result = strcmp(str1, str2); if (result == 0) { printf("Strings are equal"); } else if (result < 0) { printf("String 1 is less than String 2"); } else { printf("String 1 is greater than String 2"); } ``` The result will indicate whether the strings are equal, or if one is less than or greater than the other.
119 docs|30 tests
Download as PDF
Explore Courses for Computer Science Engineering (CSE) exam

Top Courses for Computer Science Engineering (CSE)

Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

Semester Notes

,

study material

,

shortcuts and tricks

,

pdf

,

Basic Strings in C Programming | Programming and Data Structures - Computer Science Engineering (CSE)

,

video lectures

,

Viva Questions

,

ppt

,

mock tests for examination

,

Important questions

,

practice quizzes

,

Exam

,

Basic Strings in C Programming | Programming and Data Structures - Computer Science Engineering (CSE)

,

Previous Year Questions with Solutions

,

Objective type Questions

,

Summary

,

Extra Questions

,

Basic Strings in C Programming | Programming and Data Structures - Computer Science Engineering (CSE)

,

MCQs

,

Free

,

past year papers

,

Sample Paper

;