C | Input and Output | Question 28

Last Updated :
Discuss
Comments

Predict output of the following program 

C
#include <stdio.h>
int main()
{
   printf("\new_c_question\b\r");
   printf("geeksforgeeks"); 
   getchar();
   return 0;
}

ew_c_question
geeksforgeeks
 

new_c_ques
geeksforgeeks
 


geeksforgeeks
 

Depends on terminal configuration

Share your thoughts in the comments