Updated readme. Going through first chapter
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 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;
|
||||
}
|
||||
Reference in New Issue
Block a user