/* * yrborn.c * Ask use for the year they were born * Capture the users entery and store it as an integer variable. * Tell the user what year they entered */ #include int main(void) { int birthdate; printf(" What year where you born? (i.e 1969 )"); scanf( "%d", &birthdate); printf("You entered %d\n", birthdate); return 0; }