From ce077f26d24e3bd5596abaf52947bd38e50699f9 Mon Sep 17 00:00:00 2001 From: Skm26 <72231348+Skm26@users.noreply.github.com> Date: Fri, 2 Oct 2020 12:13:51 +0530 Subject: [PATCH] Added comments to the statements --- ex1/ex1.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }