19. Predict the output or error(s) of the following c code Peter Vegas C - Predict the Output 1 2 3 4 5 6 main() { printf("\nab"); printf("\bsi"); printf("\rha"); } main() { printf("\nab"); printf("\bsi"); printf("\rha"); } Click here to view the answer Answer: hai Explanation: \n – newline \b – backspace \r – linefeed Peter Vegas