C Language Q & A #5 (cont.)
Change the value of a variable by making a new assignment to it, using the assignment operator (a single “equals” sign). This sequence of statements would create a variable named “michael” and assign some different numbers to it:
int michael;
michael = 5; /* assign the value 5 to michael */
michael = 20; /* assign the value 20 to michael */