Answers to Application Activities

= n is assigned the value 66. (different than mathematical equal sign). or. int n=66; //declaration can be anywhere in the program (can have more than one variable on the same line int i, j;) Names (identifiers) - Names should be meaningful to help document your program. may use letters, digits, underscores. No spaces. may not begin with a digit ................
................