Variables' contents can be changed at any time in the program.
It's possible to reuse variables over and over.
#include <stdio.h> int main() //from www. j a va2 s .c o m { int prime; prime = 3; printf("i1 is %d\n",prime); prime = 7; printf("i2 is %d\n",prime); prime = 13; printf("i3 is %d\n",prime); return(0); }
As you can see, the variable prime is used over and over, each time changing its value.
The new value that's assigned replaces any existing value.