Skip to content
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
4 changes: 2 additions & 2 deletions Basic_C_Examples/basic.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <stdio.h> //this is the library for input and output functions and macros

#include <conio.h>
#include <math.h> //mathematics library
#include <string.h> //string operations library
#include "stdlib.h" //standart definitions library
Expand Down Expand Up @@ -98,4 +98,4 @@ int main()

getch(); //Standard function from stdio, wait for
return 0;
}
}