diff --git a/ex1/ex1.c b/ex1/ex1.c index e0e4743..c150b9e 100755 --- a/ex1/ex1.c +++ b/ex1/ex1.c @@ -10,9 +10,9 @@ int main(void) int year = 2013; int age; age = year - Year; - printf("I was born on %d.%d.%d\n", Day, Month, Year); - printf("Today is %d.%d.%d\n", day, month, year); - printf("I am %d years old\n", age); + printf("I was born on %d.%d.%d\n", Day, Month, Year);//Displays user date of birth + printf("Today is %d.%d.%d\n", day, month, year);//Displays today's date + printf("I am %d years old\n", age);//Displays the age of the user return 0; }