Changes

Jump to navigation Jump to search

C

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

edits

Navigation menu