|
Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
c++ - cin with a string
This compiles but does not execute:
//(code has been shortened on purpose)
#include <iostream.h>
#include <string>
string something;
int main()
{
cout << "Enter your name: ";
cin >> something;
}
This compiles and executes properly:
#include <iostream.h>
#include <string>
char something[40];
int main()
{
cout << "Enter your name: ";
cin >> something;
}
Why won't a string work with cin?
Mar 16 2003
In article <b539un$1097$1 digitaldaemon.com>, st says...This compiles but does not execute: //(code has been shortened on purpose) Mar 17 2003
"Richard Grant" <fractal clark.net> wrote in message news:b54gjm$1qvp$1 digitaldaemon.com...In article <b539un$1097$1 digitaldaemon.com>, st says...This compiles but does not execute: //(code has been shortened on purpose) Mar 17 2003
|