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.

GCC CCS Console printf not working

Other Parts Discussed in Thread: TM4C123GH6PM

I'm just trying to use printf and I don't see this console window everyone seems to be seeing which is the CIO window.

#include "TM4C123GH6PM.h"
#include "bsp.h"

#include <stdio.h>
#include <stdint.h>

int main() {


printf("Hello");
printf("Hello");
printf("Hello");
printf("Hello");
printf("Hello");


while (1) {

printf("Hello");
fflush (stdout);
printf(" World!");
fflush (stdout);

}
}