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.

SW-TM4C: Why can't I see Hello World?

Part Number: SW-TM4C
Other Parts Discussed in Thread: TM4C129ENCZAD

Hello, I have created a new Project with CCSProject.
(The project name is Hello.)

I created the code below in hello.c.
#include <stdio.h>

int main(void){
printf("Hello World!\n");

return 0;
}

After building this project, I tried to load Hallo.out, but only the following was displayed on the console screen.
CORTEX_M4_0: GEL Output:
Memory Map Initialization Complete

What do I need to do to display Hello World on the console screen?