/* * This is a slightly less simple program. The result should be a value of 10 * in location 0, 20 in location 1, and 210 in location 2. * * Before you have functions working, you should test the program with the "no * functions" version of the test program. * * After you get this program working, you should be able to test the full * range of expression evaluation. You should then proceed to test if, while, * and print statements. */ int i,j,k; void main() { i = 10; j = 20; k = i + j * 10; }