More about pointers and Arrays.
File | Description |
---|---|
strcat | A function that concatenates two strings. |
strncat | A function that concatenates two strings. |
strncpy | A function that copies a string. |
strcmp | A function that compares two strings. |
Reverser | A function that reverses the content of an array of integers. |
Always look up | A function that changes all lowercase letters of a string to uppercase. |
Capitalize on what comes | A function that capitalizes all words of a string. |
Encoder | A function that encodes a string into 1337. |
rot13 | A function that encodes a string using rot13. |
Numbers have life | A function that prints an integer. |
Magic | Adding one line to this code, so that the program prints a[2] = 98 . |
- All files should end with a new line.
- Code should use the
Betty
. - Not allowed to use global variables.
- No more than 5 functions per file.
- Not allowed to use the standard library.
- Allowed to use _putchar.
- All prototypes of functions should be presented in The Header File.