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.

LM3S3748 Hello World problem!

Hi guys,

 

I am trying to run a simple HelloWorld program in CCSv4. I have done all the correct (or atleast i believe i have) settings and control features.

Everything builds normally and there are no errors. The problem is I don't get the output in the console. Can anyone tell me why?


#include <stdio.h>                        // standard I/O needed for printf

void main(void) {
    printf("hello world\n");
   
    return;
}