Open main menu

Changes

C

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

edits