A few hours ago I bought a C++ Programming book, called C++ Programming in easy steps by Mike Mcgrath. Im stuck on page 17.
My guide told me to write this in notepad,
#include <iostream>
using namespace std ;
int main()
{
char letter ; letter = 'A' ; //Declared then initialized.
int number ; number = 100 ; //Declared then initialized.
float decimal = 7.5 ; //Declared and initialized.
double pi = 3.14159 ; //Declared and initialized.
bool isTrue= false ; //Declared and initialized.
return 0 ;
}
And then it said to "Now insert statements to output each stored value." It showed this.