What does '\r' and '\b' mean? Please explain with example.
Answer Posted / mahboob ur rahman
System.out.print("mahboob\rkhan");
output:
mahboob
it will just priint mahboob
| Is This Answer Correct ? | 1 Yes | 13 No |
Post New Answer View All Answers
What is #include cmath?
What is object oriented programming (oop)?
What is srand c++?
What is c++ & why it is used?
We all know that a const variable needs to be initialized at the time of declaration. Then how come the program given below runs properly even when we have not initialized p?
How would you implement a substr() function that extracts a sub string from a given string?
What are static variables?
Can the creation of operator** is allowed to perform the to-the-power-of operations?
What is a string example?
If you push the numbers (in order) 1, 3, and 5 onto a stack, which pops out first a) 1 b) 5 c) 3
How is c++ used in the real world?
what are the characteristics of Class Members in C++?
Differentiate between a pointer and a reference with respect to c++.
What is the difference between global variables and local variable
Explain how an exception handler is defined and invoked in a Program.