String functions Flashcards
Lecture 11
gets()
It reads characters from the keyboard until it reaches a newline character
(\n)
puts()
Requires an argument as a pointer to a string.
Stops accepting characters to output when it encounters the null character.
When puts() finally finds the closing null character, it replaces it with a newline character.
Each string displayed by puts() function is placed on a new line
getchar()
Takes no arguments and it returns the next character from the input.
After typing in a character you have to use carriage return to return the
character to the function call.
Deals with characters
strlen()
It returns length of the string without including end character
size_t strlen(const char *str)
sizeof()
It returns the total allocated size assigned to the array
size_t sizeof(const char *str)
strcmp
It compares two strings and returns an
integer value.
If equal= function return 0 if
str1 < str2 OR str1 is
a substring of str2 then it returns a negative value.
If str1 > str2 then it returns
a positive value
int strcmp(const char *str1, const char *str2)
strcat()
Concatenates two strings and returns the concatenated string.
char * strcat(char *str1, char *str2)
strlwr
char * strlwr( char *str) : converts a string to lowercas
strupr()
char * strupr( char *str) : converts a string to uppercase
strrev()
char * strrev( char *str) : reverses a string
stchr()
char * strchr( char *str) : finds first occurrence of given character in string
strstrr
char * strstrr( char *str) : finds first occurrence of given string in another string
strcpy()
char * strcpy( char *str1, char *str2)
It copies the string str2 into string str1, including the end character.