I'm very new to programming in C++ but I'm trying to write some code which filters a specific word from a string and then takes a specific action. For some reason the code does not see the text inside the string.
printf("%s \n", data.c_str());
cout << data;
This shows absolutely nothing - meaning I cannot use .find or write it to a file.
printf("%s \n", data);
This shows exactly what I need.
I am writing the code into data with assembly:
mov data, EDX
Why is that I can only use the the last method?
Edit:
Data is initiated as:
std::string data;
printf("%s \n", data);works... something's wrong if data is a string. – Luchian Grigore Jun 23 '12 at 22:25dataand how are you initializing it (just sayingmov data, EDXis not nearly enough... I'm very inclined to downvote the question. If you want help, you need to provide more info. – Luchian Grigore Jun 23 '12 at 22:31