Open main menu

Changes

C

560 bytes added, 12:34, 28 March 2018
Created page with "C programming is a powerful general purpose computer programming language. == The Famous Hello World == The famous hello world code for you to observe and admire: #include..."
C programming is a powerful general purpose computer programming language.


== The Famous Hello World ==
The famous hello world code for you to observe and admire:

#include <stdio.h>

int main() {
printf("Hello, World!\n");
return 0;
}


== Hello World Explained ==

// This is asking the C program to include the library called stdio.h
#include <stdio.h>

// This is the main function
int main() {
// This function is printing the words "Hello, World!" with a new line break.
printf("Hello, World!\n");
// This is the exit code
return 0;
}
56

edits