Status: Tags: Links: C Variables
C Strings
Principles
- Array of chars
- 0 is at the end of every array (
\0
)- Other elements will not be counted
- The length of the array can be longer than strlen()
- 0 is at the end of every array (
- C stores duplicate strings in the same place
world
from str1 =hello world
would have the same adress as str2 =world
<string.h>
for string functions
Functions
|
|
strcpy()
char * strcpy(char * dest, consnt char * src)
- Copies the string src into dest
- Returns the pointer to the dest
- What are our requirements about the parameters?
- The length of dest must be sufficient to copy src.
|
|
strcat()
- Concatenates 2 strings
- Appends src to the end of dest
|
|
Syntax
|
|
Backlinks
Array of strings
|
|
Only the pointers are in the same array, but not the actual data.
References:
Created:: 2021-09-15 15:16