Module 1 of 15
C++ is an extension of C programming language developed by Bjarne Stroustrup. It supports both procedural and object-oriented programming. C++ is widely used for game development, system software, and performance-critical applications.
C++ C भाषा का विस्तारित रूप है जिसे Bjarne Stroustrup ने विकसित किया था। यह procedural और object-oriented दोनों प्रकार की programming को support करता है।
#include <stdio.h>
int main() {
printf("Welcome to Introduction to C++");
return 0;
}