#NOTE Almost all Singly LinkedList's functions are implemented in functions.h
All these programs run perfectly if compiled with gcc
compiler.
In case, you wanna run this programs in TURBOC IDE then just make the following changes
-
Find the statement
int main()
and change it tovoid main()
-
Find the statement
return 0;
and change it togetch();
-
If the preprocessor directive
#include<conio.h>
isn't included then please include it, it will required for clearing the console screen. For that callclrscr();
function from the main function.