/* * tourvar1.c */ #include int main(void) { int xx=10; int yy=12; printf("The value of xx is %d. \n", xx ); printf("The value of yy is %d. \n", yy ); return 0; }