Day 5 Recap Questions
- When we declare an array in C, what are the initial values?
- What is the ASCII (Unicode) table?
- What is a null terminator? What is its ASCII value?
- Consider c-string
"ab\0cd\0"
- what is the reported string length? - How do we check if two C-strings are the same? In addition, are these two strings the same:
"ab\0cd\0"
and"ab\0"
?