Hi,
I'm currently using CCS v3.3.38.2 with Code Generation Tools v6.1.22 and BIOS v5.31.02. I built the following simple program:
#include <iostream.h>
int main()
{
int years = 4;
char mesg[] = "I want to learn C++\n";
cout << "I've known C for " << years << " years. " << mesg;
return(0);
}
How do I open an I/O window in CCS so that when my project is open and runs "cout" actually prints to the screen?
Thanks,
Len