C Language Daily Problems with Solutions

C Language Daily Problems with Solutions

1.String “\\“ABC\“\\“ has a length of . A. 11 B. 7 C. 5 D. 3 Answer Explanation: The string constant consists of several characters, and the string length does not count ‘\0’ (the null terminator character), so in this question, \\ is one byte, \” is one byte, A is one byte, B is one … Read more