Lesson # 9. Structures

Back Menu Go ahead Theory Structures in C++ A data structure is a group of data elements grouped together under one name. These data elements, known as members, can have different types and different lengths. Example: 1 2 3 4 Читать далее

Lesson # 6. Using strings

Back Menu Go ahead Theory String type To work with a string the string library must be included: #include <string>#include <string> Variables of string type can be understood as an array of characters. A specific character in a string can Читать далее