Tool/software: Code Composer Studio
I want to run a C++ program in code composer studio V9 on MSP430FR5994 Launchpad. I have created a C++ project, it is compiling and building correctly but it is not running. The load option does not show the files of this C++ project as can be seen in the attached screenshot 1.
One of the C projects starts debugging and compiling by default. Can someone check what is wrong with my code or the configurations?
#include<iostream>
using namespace std;
// main function -
// where the execution of program begins
int main()
{
// prints hello world
cout<<"Hello World";
return 0;
}

