Click here to Skip to main content
15,914,642 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: DirectX stipple lines Pin
ZoogieZork3-Nov-03 18:18
ZoogieZork3-Nov-03 18:18 
GeneralRe: DirectX stipple lines Pin
mikeh4-Nov-03 3:05
mikeh4-Nov-03 3:05 
GeneralRe: DirectX stipple lines Pin
mikeh6-Nov-03 2:18
mikeh6-Nov-03 2:18 
GeneralGetFolderFromID() from Namespace Pin
chz171065xy3-Nov-03 7:27
chz171065xy3-Nov-03 7:27 
Generalgetline question Pin
Anonymous3-Nov-03 7:27
Anonymous3-Nov-03 7:27 
GeneralRe: getline question Pin
Alton Williams3-Nov-03 7:56
Alton Williams3-Nov-03 7:56 
GeneralRe: getline question Pin
Anonymous3-Nov-03 9:58
Anonymous3-Nov-03 9:58 
GeneralRe: getline question Pin
Joaquín M López Muñoz3-Nov-03 10:04
Joaquín M López Muñoz3-Nov-03 10:04 
You are being lucky, the buffer is being overrun touching other parts of the stack, though by mere coincidence the app is not crashing. Try this:
int before=0;
char szString[21];
int after=0;
 
cout << "Please enter a string : ";
cin.getline(szString, 25);
Most likely you'll see the contents of either before or after are being changed after reading the string, which certainly can crash the program in more complex scenarios.

Do not expect crash in every situation crash might occur. Things can get worse and such a problem can go unnoticed until least expected.



Joaquín M López Muñoz
Telefónica, Investigación y Desarrollo
GeneralRe: getline question Pin
Jeryth3-Nov-03 10:13
Jeryth3-Nov-03 10:13 
GeneralPorting from WinCE to VC++ Pin
VanHlebar3-Nov-03 7:18
VanHlebar3-Nov-03 7:18 
GeneralGetFolderFromID() from Namespace Pin
johnxx3-Nov-03 6:47
johnxx3-Nov-03 6:47 
GeneralDefault name file in serialization Pin
doctorpi3-Nov-03 5:37
doctorpi3-Nov-03 5:37 
GeneralRe: Default name file in serialization Pin
Markyg3-Nov-03 10:34
Markyg3-Nov-03 10:34 
Generalvector and delete Pin
ns3-Nov-03 5:32
ns3-Nov-03 5:32 
GeneralRe: vector and delete Pin
valikac3-Nov-03 5:44
valikac3-Nov-03 5:44 
GeneralRe: vector and delete Pin
ns3-Nov-03 5:54
ns3-Nov-03 5:54 
GeneralRe: vector and delete Pin
jhwurmbach3-Nov-03 6:32
jhwurmbach3-Nov-03 6:32 
GeneralRe: vector and delete Pin
ns3-Nov-03 7:52
ns3-Nov-03 7:52 
GeneralRe: vector and delete Pin
TFrancis3-Nov-03 8:42
TFrancis3-Nov-03 8:42 
Generalthanks! Trying it out now...... Pin
ns3-Nov-03 8:53
ns3-Nov-03 8:53 
GeneralRe: thanks! Trying it out now...... Pin
souldog3-Nov-03 9:42
souldog3-Nov-03 9:42 
GeneralRe: thanks! Trying it out now...... Pin
ns4-Nov-03 2:04
ns4-Nov-03 2:04 
GeneralStruggling with Regex Pin
DimkaSPB3-Nov-03 5:27
DimkaSPB3-Nov-03 5:27 
GeneralRe: Struggling with Regex Pin
Michael Dunn3-Nov-03 5:33
sitebuilderMichael Dunn3-Nov-03 5:33 
GeneralRe: Struggling with Regex Pin
DimkaSPB3-Nov-03 7:32
DimkaSPB3-Nov-03 7:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.