Select Answer
Prints OK followed by carriage return and newline — correct output
OK
Prints OK\r\n followed by garbage characters — the string has no null terminator, so printf reads past the array
OK\r\n
printf
Compilation error — resp is too small
resp
Prints only OK — \r and \n are ignored
\r
\n