Out of the following, find those identifiers, which can not be used for naming Variable, Constants or Functions in a C++ program:
Total*Tax, double, Case, My Name,
NeW, switch, Column31, _Amount
Solution
TC++ #5600
Total*Tax
double
My Name
switch
Notes
Total*Tax //This can not be used as it contain special character * double //This can not be used as this is a keyword Case //This can be used as C begins with capital letter My Name //This can not be used as it contains space char NeW //This can be used switch, //This can not be used as it is a reserved keyword Column31 //This can be used _Amount //This can be used