Dumb question (LMM/XMMC)
Mark Mara
Posts: 64
Hello,
Could someone explain why I get different results running the following 3 line program when complied for XMMC or LMM?
LMM works as I would expect, however XMMC displays the last 6 character of the second line. The following screen shots show the SimpleIDE and terminal for each test.
XMMC:

LMM:

Thanks --markM
Could someone explain why I get different results running the following 3 line program when complied for XMMC or LMM?
#include <stdio.h>
int main(void)
{
printf("print line one\n");
printf("print line two\n");
return 0;
}
LMM works as I would expect, however XMMC displays the last 6 character of the second line. The following screen shots show the SimpleIDE and terminal for each test.
XMMC:

LMM:

Thanks --markM

Comments
--markM