This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Printing with cout

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