Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

C - Pointers Arrays and Strings ☢️

Table of contents ⬇️

Files Description
0-main.c C file testing the function reset_to_98(int *n) that change the value of *n to 98
1-main.c C file testing the function swap_int(int *a, int *b) that swap two numbers
2-main.c C file testing the function _strlen(char *s) that count chars
3-main.c C file testing the function _puts(char *str) that prints a string to stdout
4-main.c C file testing the function print_rev(char *s) that prints a string to stdout at reversed
5-main.c C file testing the function rev_string(char *s) that reverses a string
6-main.c C file testing the function puts2(char *str) that prints every other character of a string, starting with the first character, followed by a new line.
7-main.c C file testing the function puts_half(char *str) that prints half of a string, followed by a new line
8-main.c C file testing the function print_array(int *a, int n) that print an array of int with putchar
9-main.c C file testing the function *_strcpy(char *dest, char *src) that copies the string pointed to by src, including the terminating null byte (\0), to the buffer pointed to by dest.
100-main.c C file testing the function _atoi(char *s) that Converts a string to an integer