answersLogoWhite

0

char *strcpy( char *s1, const char *s2)

char *strncpy( char *s1, const char *s2, size_t n)

char *strcat( char *s1, const char *s2)

char *strncat( char *s1, const char *s2, size_t n)

char *strchr( const char *s, int c)

char *strrchr( const char *s, int c)

int strcmp( const char *s1, const char *s2)

int strncmp( const char *s1, const char *s2, size_t n)

size_t strspn( char *s1, const char *s2)

size_t strcspn( char *s1, const char *s2)

size_t strlen( const char *s)

char *strpbrk( const char *s1, const char *s2)

char *strstr( const char *s1, const char *s2)

char *strtok(char *s1, const char *s2)

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Library functions in C programming?

They are very important. The most commonly used functions are the string and file handling ones.


String handling function in c?

In C, string handling functions are primarily found in the <string.h> library, which provides various utilities for manipulating strings. Common functions include strlen() for determining the length of a string, strcpy() for copying one string to another, strcat() for concatenating two strings, and strcmp() for comparing two strings. These functions operate on null-terminated character arrays, which are the standard way to represent strings in C. Proper memory management is essential when using these functions to avoid buffer overflows and undefined behavior.


A C program to print the number of words from given String?

/*We can calculate this with a lot of methods I'll explain only one of them */ *str = "abcd"; // this is a input string printf("%d", strlen(str));


Different parameter passing methods with examples?

explain parameter passing methods c program


What is the difference between a C plus plus string and a C-style string?

A std::string is an object that encapsulates an array of type char whereas a C-style string is a primitive array with no members. A std::string is guaranteed to be null-terminated but a C-style string is not.


What is the c string in voilin?

There is no C string on a violin- the strings are G, D, A and E. Perhaps you are thinking of a viola, which has a low C string, alongwith a G, D and an A string.


C plus plus library functions for string operations?

You can use "string" class in C++ for string operations or you may use c style string functions as well. #include <string> String class in C++ provides all basic function to operate on strings. you may details descriptin at http://www.cplusplus.com/reference/string/string/


What are strings?

Some stringed instruments contain a C-string, producing sound from the string creates the note C, so it is called C-string.


Is there a c-string thong for men?

yes, c-string is available for men..


What is the souce code of a b c and abc in vbnet?

In VB.NET, you can define variables a, b, and c, and then concatenate them to form abc like this: Dim a As String = "a" Dim b As String = "b" Dim c As String = "c" Dim abc As String = a & b & c This code initializes three string variables and uses the & operator to concatenate them into a new string abc.


What is the difference between dynamic loading and late binding?

or not. ln case first string occlrs multiple times in second string, it reporis the number of times it occurs in second. Diflerentiate between dSrnamic loading and late binding. What are rarious visibility modes in C++ ? Explain each ol them with suitable examples. Differentiate between class diagram and interaction diagram. Also list their


What is return type of string in c?

In C programming, a string doesn't have a specific return type as it's essentially an array of characters. So, if a function is returning a string, it should be declared to return a pointer to a char (char*), since a string in C is represented as an array of characters terminated by a null character ('\0').