As Academy Club, we designed C++ training for BTK Academy. The training lasted 13.5 hours. The training we designed aimed to ensure that students have a basic level of C++ programming knowledge and gain skills to write their own applications and to realize their working systems.
What is C++, What Can We Do?
In general, every C program is also a C++ program, but not every C++ program is a C program. There are some exceptions to this. What distinguishes C++ from C is that C++ allows programming using the object paradigm. Files created in C++ have the extension .cpp. In addition, many languages such as Java, newer versions of C and C# have been developed using C++. Classes allow new data types to be created or new ones to be derived from existing ones. Also, thanks to polymorphism, code written with a class definition can also work with new classes derived from that class type.





