What does '\r' and '\b' mean? Please explain with example.
Answer Posted / v
printf("ABC\bDE");
It prints only "DE", because the printed ABC will be removed
by '\b'
| Is This Answer Correct ? | 11 Yes | 28 No |
Post New Answer View All Answers
What is the use of 'using' declaration in c++?
What will strcmp("Astring", "Astring"); return a) A positive value b) A negative value c) Zero
What causes a runtime error c++?
What are punctuators in c++?
What do you mean by inheritance in c++? Explain its types.
Does c++ have string data type?
What can I use instead of namespace std?
What is the best c c++ compiler for windows?
What are built-in functions? What is the syntax for the definition?
What is abstract keyword in c++?
What is c++ stringstream?
What is binary search in c++?
What is the best way to take screenshots of a window with c++ in windows?
Which sort does c++ use?
How would you find out if a linked-list is a cycle or not?