GeekCode
798 subscribers
452 photos
3 videos
7 files
942 links
๐ŸCyber Security โค๏ธ
๐ŸHacking Resources ๐Ÿ‘จโ€๐Ÿ’ป

Providing knowledge to people's๐Ÿฅ€
Nobody gets smaller by sharing knowledge
You can also share your knowledge with us...๐Ÿ™‚๐Ÿ™‚

๐Ÿ“ฐPromotion/Query - @geekcodevipbot
Download Telegram
What is C++ programming?

C++ is an enhanced version of the C programming developed by Bjarne Stroustrup back in 1986. It adds up every part of C, including object-oriented programming. Likewise, C++ is used in game development, software infrastructure, and application.It can significantly handle hardware and run code in any environment. As a result, C++ is one of the leading choices to create dynamic and agile software that operates system resources and critical tasking.Like other programming languages, C++ also has some terminologies, such as class, method, object, polymorphism, subclass, superclass, and more. Additionally, it has its own file extension that uses ".cpp" , ".cxx", ".c++", and ".h", ".hpp", ".hxx", ".h++" for headers.

Example:
#includes <iostream.h>
using namespace std;
int main () {
cout << โ€œ Hello, geekcode!โ€ <<endl;
return 0;
}


@geekcode