Output of Following program is : hai
I didn\'t get how the \\r carriage return works in this program and in real can any one help me out
From 5.2.2/2 (character display semantics) :
\b(backspace) Moves the active position to the previous position on the current line. If the active position is at the initial position of a line, the behavior of the display device is unspecified.
\n(new line) Moves the active position to the initial position of the next line.
\r(carriage return) Moves the active position to the initial position of the current line.
Here, your code produces :
ab \b : back one charactersi : overrides the b with s (producing asi on the second line)\r : back at the beginning of the current lineha : overrides the first two characters (producing hai on the second line)In the end, the output is :
\nhai