Loading...

Introduction to C

C is a general-purpose programming language developed by Dennis Ritchie in the early 1970s at Bell Labs. It is widely used for system programming, embedded systems, and application development due to its efficiency and flexibility.

Basic C Program

Here is a simple C program that prints "Hello, World!" to the screen:

#include <stdio.h>
int main() {
    printf("Hello, World!\n");
    return 0;
}

If you have any questions, feel free to ask. Thank you for reading!

Thankyou!