Skip to content
This repository has been archived by the owner on May 27, 2021. It is now read-only.

Change Head #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion 10_switch_case.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include <stdio.h>
#include <conio.h>
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you describe why you have added conio.h header ?


int main()
{
Expand Down Expand Up @@ -27,4 +28,4 @@ int main()
break;
}
return 0;
}
}