1 2 3 4 5 6 7 8 9 10
#pragma once class Electroics { char model[256]; float needsVolts; float needsAmps; public: virtual void Print(); };