/* * exp_eq.c - using comparison of values to take action */ #include // include functions in library when compiling int main(void) // header for function main { int xx, yy; // declare int variables xx and yy xx=3; // assign xx value of 3 yy=(1+2); // add 1 and 2, assin result to yy if (xx==yy) // if xx is equivilent to yy enter if braces { // if braces printf("xx equals yy.\n"); // output that they are the same } // end if braces else // if the expression was not true, enter else braces { // else braces printf("xx does not equal yy.\n"); // output that they are not the same. } return 0; // return 0 to colling program }