Changes

Jump to navigation Jump to search

C

1 byte removed, 13:42, 4 June 2021
1343434
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;
}</nowikicodemonke
Anonymous user

Navigation menu