C is one of the most popular programming languages in the world. It was developed by Dennis Ritchie at Bell Labs. Because C is very close to computer hardware, programs written in C run extremely fast. Almost every modern language—including C++, Java, Python, and JavaScript—borrowed ideas from C.
Source Code (.c file) -> Human readable C code with functions & headers
#include <stdio.h>
int main() {
printf("Hello, World! Welcome to C.
");
return 0;
}#include <stdio.h>Tells the computer to include the Standard Input Output library so we can use printf().
int main() {The main function. Every C program begins executing right here.
printf("Hello, World!\n");Prints text to the screen. \n moves the cursor to a new line.
return 0;Ends the main function and tells the operating system that our program finished successfully.
}Closes the main function.