У нас вы можете посмотреть бесплатно C++ Tutorial : structures and abstract datatypes C/C++ - part 2 или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Playlist of the series : • Плейлист In this video, I continue the series with a discussion on initialization lists for structures, arrays of structures, and using members of structures as function arguments and arithmetic operands. abstract data types are data types created by the programmer and can be used to represent real world things such as students, or cars, or maybe monsters in a fantasy rpg. These are implemented using the struct construct within the language, and let us wrap up multiple values inside one data type, much like an array is like a variable that can hold more than one value. Unlike arrays, structs can hold values of different types. In later videos, I will show you how to pass structs to functions, return them from functions, and use structs with dynamic memory allocation.