blob: 915998b79a4fde12b8ee15121f9d37f54e6fcb8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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);
}
|