Transcription: A declaration introduces an object and its identifier or name into a program. Here we declare variable x to be an integer, reserve memory for its value, and initialize it to 42. As in ANSI C, you must declare an object in C++ before you can use it.