Hello, the output of this code is 'ef' but if we add up a "newline" print after this print then the output becomes 'efd'. Then why in earlier scenerio the 'd' was not getting printed ?
Thanks in advance.
#include<stdio.h>
int main()
{
printf("\nab\bcd\ref");
}