Types of string in c programming language
Answers
Answered by
0
There are Indefinite ones in C
Answered by
0
Heya,
here's the answer..
1.
strcpy(s1, s2);
Copies string s2 into string s1.
2.
strcat(s1, s2);
Concatenates string s2 onto the end of string s1.
3.
strlen(s1);
Returns the length of string s1.
4.
strcmp(s1, s2);
Returns 0 if s1 and s2 are the same; less than 0 if s1<s2; greater than 0 if s1>s2.
5.
strchr(s1, ch);
Returns a pointer to the first occurrence of character ch in string s1.
6.
strstr(s1, s2);
Returns a pointer to the first occurrence of string s2 in string s1
There are 6 strings here's it given with function s..
here's the answer..
1.
strcpy(s1, s2);
Copies string s2 into string s1.
2.
strcat(s1, s2);
Concatenates string s2 onto the end of string s1.
3.
strlen(s1);
Returns the length of string s1.
4.
strcmp(s1, s2);
Returns 0 if s1 and s2 are the same; less than 0 if s1<s2; greater than 0 if s1>s2.
5.
strchr(s1, ch);
Returns a pointer to the first occurrence of character ch in string s1.
6.
strstr(s1, s2);
Returns a pointer to the first occurrence of string s2 in string s1
There are 6 strings here's it given with function s..
Similar questions
Physics,
7 months ago
Math,
7 months ago
Math,
1 year ago
Biology,
1 year ago
Social Sciences,
1 year ago