Difference between revisions of "C"

From MPGH Wiki
Jump to navigation Jump to search
(1343434)
 
Line 24: Line 24:
 
   return 0;
 
   return 0;
 
}</code>
 
}</code>
 +
 +
monke

Latest revision as of 13:42, 4 June 2021

C programming is a powerful general purpose computer programming language.


The Famous Hello World[edit]

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[edit]

// 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;

}

monke