What is the output of `char str[] = 'Hello'; printf('%s', str + 2);`?
Q1. What is the output of `char str[] = 'Hello'; printf('%s', str + 2);`?
Answer: llo
Explanation: Pointer arithmetic moves the starting point of the string to 'l', so it prints 'llo'.