c code output
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("\nab");
printf("\bsi");
printf("\rha");
getch();
}
According to me the op should be "hai",but the output is
absi
ha
So ,plz tell how is it actually displaying this output
#include<conio.h>
void main()
{
clrscr();
printf("\nab");
printf("\bsi");
printf("\rha");
getch();
}
According to me the op should be "hai",but the output is
absi
ha
So ,plz tell how is it actually displaying this output
0