Files
2020-08-31 21:59:22 -04:00

17 lines
183 B
C

/*
* Another way to print a new line
*
* Author: Kun Deng
*/
#include <stdio.h>
int main()
{
char new_line = 0x0A;
printf("hello, world%c", new_line);
return 0;
}