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.

How to compile and execute a C++ program in Code Composer Studio on MSP430 launchPad?

Part Number: MSP430FR5994

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;
}

**Attention** This is a public forum