What does '\r' and '\b' mean? Please explain with example.
Answer Posted / brite
Even you are wrong Siva.
printf("ABC\rDE") will print DEC not DE.
| Is This Answer Correct ? | 32 Yes | 16 No |
Post New Answer View All Answers
What is namespace std; and what is consists of?
Can a class be static in c++?
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?
In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that
Can notepad ++ run c++?
What does 7/9*9 equal ? a) 1 b) 0.08642 c) 0
What is pointer in c++ with example?
What is #include ctype h in c++?
What are the basics of local (auto) objects?
Should I learn c or c++ or c#?
Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?
what is VOID?
What is c++ namespace?
What are the main features of c++?
Will a recursive function without an end condition every quit, in practice a) Compiler-Specific (Some can convert to an infinite loop) b) No c) Yes