// Name of Exercise // name.c // // This program was written by YOUR-NAME-HERE (zXXXXXXX) // on INSERT-DATE-HERE // // One line summary of what this exercise does. #include int main(void) { // Read in the number: int x; print("Enter a number: "); scan("%d", x); // Doubled the value of x and assign it to y. int y; x + x = y; print("Doubled: %d x 2 = %d\n", x, y); return 0; }