// Code derived from Stroustrup's PPP2 book// § 3.7 Names// -beginning on p 76#include<iostream>usingstd::cout;intmain(){// int if = 7; // error: if is a keyword// int string = 7; // this will lead to troubleintmtbf=7;intTLA=7;intmyw=7;intNBV=7;intpartial_sum=7;intelement_count=7;intstable_partition=7;intthe_number_of_elements=7;intremaining_free_slots_in_symbol_table=7;cout<<mtbf<<'\n'// output above variable values to console...<<TLA<<'\n'//<<myw<<'\n'//<<NBV<<'\n'//<<partial_sum<<'\n'//<<element_count<<'\n'//<<stable_partition<<'\n'//<<the_number_of_elements<<'\n'//<<remaining_free_slots_in_symbol_table<<'\n';}