Hi,
for printing without \r\n at the end you need to use fflush(stdout); function like this:
printf("Running LPUART example\r\n");
printf("This is printf formating example string %d\r\n",10);
printf("%.2X",10);
fflush(stdout);
Here is output of your project in terminal:
Without fflush or \r\n - the last line is not printed.
Jiri