#include <stdio.h>

int term;       /* term used in two expressions */
int term_2;     /* twice term */
int term_3;     /* three times term */
main()
{

    term = 3 * 5;
    term_2 = 2 * term;
    term_3 = 3 * term;
    return (0);
}


syntax highlighted by Code2HTML, v. 0.9.1