Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c-strings

A proper way of associating enums with strings

c enums c-strings

Selecting only the first few characters in a string C++

c++ string c-strings

How to declare constexpr C string?

Strip first and last character from C string

c string c-strings

How to use memset while handling strings in C++? [closed]

Why do I first have to strcpy() before strcat()?

c c-strings

Why is strdup considered to be evil

c c-strings

C - split string into an array of strings

c c-strings

Expand macros inside quoted string [duplicate]

Can a std::string contain embedded nulls?

Using C-string gives Warning: "Address of stack memory associated with local variable returned"

c++ pointers c-strings

String termination - char c=0 vs char c='\0'

What is the difference between memcmp, strcmp and strncmp in C?

c string c-strings

Is it bad to declare a C-style string without const? If so, why?

c++ c c-strings

What happens to memory after '\0' in a C string?

Is it possible to print out only a certain section of a C-string, without making a separate substring?

c printf c-strings

How do you convert CString and std::string std::wstring to each other?

c++ mfc c-strings stdstring

What is the lifetime of the result of std::string::c_str()?

Why do I get a segmentation fault when writing to a "char *s" initialized with a string literal, but not "char s[]"?