Module 2 of 15
To start coding in C++, install a compiler like GCC or use IDEs like CodeBlocks, Dev C++, or VS Code. You can compile using g++ filename.cpp and run the executable file.
C++ के लिए GCC compiler या CodeBlocks, Dev C++, VS Code जैसे tools का उपयोग करें। कोड को g++ से compile किया जाता है।
#include <stdio.h>
int main() {
printf("Welcome to Installation & Setup");
return 0;
}