From d3848e70e33c1909564b999e052fe7368777b9c8 Mon Sep 17 00:00:00 2001 From: kartik2797 <43718146+kartik2797@users.noreply.github.com> Date: Tue, 8 Oct 2019 10:49:00 +0530 Subject: [PATCH] Create customer_class.cpp Created a simple bank customer class --- customer_class.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 customer_class.cpp 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; + } + };