I want to take an input from user between two quotes like that for example:
MY NAME " HERE IS USER'S INPUT "
I don't want to take the name and then cout the statement as mentioned, I want to take the user's input in-between the two quotes as the user types, Any suggestions!?
C++ has no understanding of what a keyboard is, or what your monitor is, so these things depends on your operating system. What operating system are you using?
Win generally comes with the header conio.h which contains the function getch, which will read keys from the keyboard without waiting for the user to press ENTER.
There are other ways to do it. This is just one that's quite simple.
Here is some code that will let you write over the same output line repeatedly. This code is cross-platform, just because being cross-platform is nice :) You should probably just use the Win bits.