🌙

C++ Prgramming tutorial

According to Wikipedia, C is a general-purpose programming language. Used in operating systems code, device drivers, protocol stacks and application software.

It was created by Dennis Ritchie in 1972 to develop Unix operating system

C is commonly used on computer architectures that range from the largest supercomputers to the smallest microcontrollers and embedded systems.

C is designed to be compiled into machine code, giving direct access to memory and hardware while using minimal extra resources. Even though it works at a low-level, it still supports writing programs that can run on different systems. A well-written C program that follows standards can be easily compiled and run on many computers and operating systems with little to no changes in the code.

#inlcude <stdio.h>
int main(){
    printf("Hello World");
return 0;
}

Output:

Hello World