Eg. cin>>var; Object cin reads input data from the user and as soon as the ENTER key is hit, the operator ">>" extracts the contents of cin and stored into the specific variable "var". That means the input data were first stored in the cin object.
Now, if cin stores the data, then I'm curios to know to which MEMBER DATA of the cin object will the inputted data will be stored??? Eg. cin.memberdataname or cin.xxxx etc?? What is the name of the member data where the inputted data are first initially stored?
No, it does not store the data. It links the standard input stream to the memory address. Standard input does not have to be a keyboard, since a txt file can serve as input, but cin stands for console input and what it really does is to grab your OS' console interface which is tied to the keyboard and ties the app on the chain. A way to test this is to check the assembly code of your app, you'll see only one variable, which is "var". However, there are other ways to get the input than using cin, but that is for an other question, if you are that curios.