From f0fa8bffaf355dde88858cf90d42dc63eedfd516 Mon Sep 17 00:00:00 2001
From: Hitesh-gurnani <55234408+Hitesh-gurnani@users.noreply.github.com>
Date: Tue, 1 Oct 2019 19:18:01 +0530
Subject: [PATCH] Update day_of_week.c

---
 day_of_week.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/day_of_week.c b/day_of_week.c
index c118faf..d317986 100644
--- a/day_of_week.c
+++ b/day_of_week.c
@@ -5,7 +5,7 @@
 #include <stdio.h>
 
 main(){
-    printf("%d %d %d", dow(2011, 7, 19), dow(1993, 5, 23), dow(2016, 12, 16)); //output- 2 0 5
+    printf("%d %d %d", dow(2011, 7, 19), dow(1693, 5, 23), dow(2018, 12, 16)); //output- 2 0 5
 }
 
 int dow(int y, int m, int d) {