From 3ba43e6ee72c82402e73d128737a49c0eeb4d13d Mon Sep 17 00:00:00 2001 From: Jatin kansal <43703274+jatinkansal2005@users.noreply.github.com> Date: Sun, 16 Oct 2022 13:27:06 +0530 Subject: [PATCH] Update 160101029_2_2.c --- 2.stacks/160101029_2_2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2.stacks/160101029_2_2.c b/2.stacks/160101029_2_2.c index b3c93bc64..dccadccc7 100644 --- a/2.stacks/160101029_2_2.c +++ b/2.stacks/160101029_2_2.c @@ -43,7 +43,7 @@ int main() stack[i].span=findSpan(stack[i].price); top=i; } - printf("Day\tPrice\tSpan\n"); + printf("Day\nPrice\nSpan\n"); while(top!=-1) { printf(" %d\t %d\t %d\n",stack[top].day,stack[top].price,stack[top].span); @@ -52,4 +52,4 @@ int main() return 0; -} \ No newline at end of file +}