Difference between revisions of "C"

From MPGH Wiki
Jump to navigation Jump to search
Line 5: Line 5:
 
The famous hello world code for you to observe and admire:
 
The famous hello world code for you to observe and admire:
  
#include <stdio.h>
+
<nowiki>#include <stdio.h>
  
 
int main() {
 
int main() {
 
   printf("Hello, World!\n");
 
   printf("Hello, World!\n");
 
   return 0;
 
   return 0;
}
+
}</nowiki>
  
  
 
== Hello World Explained ==
 
== Hello World Explained ==
// This is asking the C program to include the library called stdio.h
+
<nowiki>// This is asking the C program to include the library called stdio.h
 
#include <stdio.h>
 
#include <stdio.h>
  
Line 23: Line 23:
 
   // This is the exit code
 
   // This is the exit code
 
   return 0;
 
   return 0;
}
+
}</nowiki>

Revision as of 12:36, 28 March 2018

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