Changes

Jump to navigation Jump to search

C

26 bytes added, 12:38, 28 March 2018
no edit summary
The famous hello world code for you to observe and admire:
<code>#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}</code>
== Hello World Explained ==
<code>// This is asking the C program to include the library called stdio.h
#include <stdio.h>
// This is the exit code
return 0;
}</code>
56

edits

Navigation menu