Judsonβs Substack β’ 5 implied HN points β’ 20 Jun 23
- In C, 'string' doesn't exist on its own, but is represented by 'char *' in the cs50.h library.
- Using pointers and pointer arithmetic in C helps in accessing and iterating through addresses in memory.
- When comparing strings in C, remember to use 'strcmp' instead of '==' to check if the contents are the same.