STATIC VARIABLES Static variables are very crucial in cpp language and also for building logics for a company. Today, we will see a code first and then we will discuss the static variables. #include <iostream> #include <string> using namespace std; class people { string address;//privately called// string name;//privately called// public : static int id;// prototype of declaring a static variable// people( string name , string address )//Parameterized constructor which sets the //value for name and address// { ++id;// increment of that static variable as a new person comes to join..// this ->name = name ;//se...