#include <stdio.h>
main()
{
printf("Good\bafternoon");
return 0;
}
**Result - **
#include <stdio.h>
main()
{
printf("Good\bafternoon");
return 0;
}
**Result - **
Are you trying to make it print "Gooafternoon"?
If so, the code is okay. The problem might be with your terminal.
This is my terminal output.