I can't get "hello world" out to the console in ccs5. Please show the code lines to do this.
Bob
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.
I can't get "hello world" out to the console in ccs5. Please show the code lines to do this.
Bob
Do you use something like
printf("hello, world\n");
You can try
fprintf(stderr, "hello, world\n");
instead, or flush the stdout stream at program end.