P
pete
Sensei wrote:
For portability reasons, the last character
output to a text stream, should be a newline.
#include <stdio.h>
int main(void)
{
char *p;
int i;
for (i = 0; i <= 1024; i++)
p = 'A';
printf(p);
putchar('\n');
return 0;
}
For portability reasons, the last character
output to a text stream, should be a newline.