C

From MPGH Wiki
Jump to navigation Jump to search

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

  1. 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;

}