0
Hi!! Whats is abstact data type in c++?
ADT
2 Respostas
+ 1
Abstract data type is like blue prints of your actual data type. It will give you the behaviour and layout of the data type. In other words, you can create the starter motor as an entire abstract data type, protecting all of the inner code from the user. When the user wants to start the car, they can just execute the start() function.
0
Can you write a example in code?