✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
On a 64-bit architecture, with
const char* s1 = "12345";
char tab1[] = "43210";
and
void f(const char* s2, char tab2[]);which of the following statements are true?
Statements involving s1 and tab1 are (of course) considered in the scope of s1 and tab1;statements involving s2 and tab2 are considered in the body of f() and evaluated during the call f(s1, tab1).
Penalty for wrong ticks.