TutorialsBazaar

← Back

Learn C Programming

Module 2/15

Installation & Setup

Module 2 of 15

To start coding in C, you need a compiler like GCC. You can install tools like MinGW (Windows), use CodeBlocks, or VS Code with C extensions. After setup, you can write code in .c files and compile using gcc filename.c.

C में प्रोग्रामिंग शुरू करने के लिए आपको GCC जैसे compiler की जरूरत होती है। आप MinGW, CodeBlocks या VS Code का उपयोग कर सकते हैं। कोड .c फाइल में लिखकर compile किया जाता है।

#include <stdio.h>

int main() {
    printf("Welcome to Installation & Setup");
    return 0;
}