Changes

Jump to navigation Jump to search

C

32 bytes added, 13:42, 4 June 2021
1343434
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> monke
Anonymous user

Navigation menu