I installed code:blocks 10.05 in Windows Xp.
I couldn't watch the vector<string> variable in debug mode, as shown here: http://dl.dropbox.com/u/11813850/ss.JPG
The code I use:
#include <iostream>
#include <string>
#include <vector>
using namespace std;
int main()
{
vector<string> a(2);
a[0]="aaa";
a[1]="bbb";
return 0;
}
Could you please let me know what I should do in order to observe the variable?
Thanks in advance,
Di