diff --git a/customer_class.cpp b/customer_class.cpp new file mode 100644 index 0000000..f65acef --- /dev/null +++ b/customer_class.cpp @@ -0,0 +1,11 @@ +class Customer{ + public: + string cust_name; + int cust_id; + long long cust_balance; + Customer(){ + cust_name="Bank_default"; + cust_id=123456; + cust_balance=0; + } + };