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.

simple Problem with printf ?

Other Parts Discussed in Thread: TMS320VC5509A

my Code Composer Studio 5 just give me one printf if i try to use more, just the first come!

#include <stdio.h>

int i;

void main(void) {

    for( i = 1; i < 10; i++)
        printf("i: %d \n", i);

}

Output on Console: i: 1Ý“Ž’§i€’i€’i€’i€’i€’i€’i€’i€’

or

#include <stdio.h>

void main(void) {

    printf("Hallo World!");

    printf("Hallo World!");

}

Output on Console: Hallo World!

do i mistake in my configuration???