13 lines
132 B
C
13 lines
132 B
C
|
|
||
|
|
||
|
void main(void)
|
||
|
{
|
||
|
static const char msg[] = "hello world\r\n";
|
||
|
char *str;
|
||
|
char ch;
|
||
|
str = msg;
|
||
|
while(1) {
|
||
|
ch = *str++;
|
||
|
}
|
||
|
}
|