Change The printf function of the Hello World code (#30996)

Just changing the printf string of the Hello World code to match the code used later in the article
This commit is contained in:
shadmantaqi
2018-12-19 04:59:16 +06:00
committed by Christopher McCormack
parent 38fdf46ae7
commit a9dfb97bbd

View File

@ -27,7 +27,7 @@ Now that you have that background, let's start with our 'Hello, World' program.
int main(void)
{
printf("hello, world\n");
printf("Hello, World!\n");
return 0;
}
```