Electrical and Computer Engineering
27 of 30
UAH
CPE 112
Declaration Examples
•Variables
–char letter, middleInitial, ch;
–float payRate; // Employee’s pay rate
–float hours; // Hours worked
•Constants
–const string STARS = “*********”;
–const char BLANK = ‘ ’;
–const string BOOK_TITLE = “Programming and Problem Solving with C++”;
–const string MESSAGE = “Error Condition”;