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 +}