├── .github └── FUNDING.yml ├── .gitignore ├── Algorithms ├── BFS ├── BreadthFirstSearch.c ├── DFS_list.c ├── Dijikstra.c └── Kadane.c ├── Arrays ├── Multiplication of matrix │ ├── 2 by 2 using 2by2 and 2by2.c │ ├── 2 by 2 using 2by2 and 2by2.exe │ ├── 2 by 2 using 2by2 and 2by2.o │ ├── 3 by 3 using 3 by3 and 3by3.c │ ├── 3 by 3 using 3 by3 and 3by3.exe │ ├── 3 by 3 using 3 by3 and 3by3.o │ ├── 3 by 3 using 3by2 and 2by3.c │ ├── 3 by 3 using 3by2 and 2by3.exe │ └── 3 by 3 using 3by2 and 2by3.o ├── addmatrix.c ├── addmatrix.exe ├── addmatrix.o ├── ascendingorder.c ├── averageandsum.c ├── averageandsum.exe ├── averageandsum.o ├── biggestnumber.c ├── biggestnumber.exe ├── biggestnumber.o ├── copyonearraytoanother.c ├── copyonearraytoanother.exe ├── copyonearraytoanother.o ├── countposnegzero.c ├── countposnegzero.exe ├── countposnegzero.o ├── countrepeatedletter.c ├── countrepeatedletter.exe ├── countrepeatedletter.o ├── dectobin.c ├── dectobin.exe ├── dectobin.o ├── descendingorder.c ├── descendingorder.exe ├── descendingorder.o ├── evenoddprint.c ├── evenoddprint.exe ├── evenoddprint.o ├── highestmarks.c ├── highestmarks.exe ├── highestmarks.o ├── invertible.c ├── invertible.exe ├── invertible.o ├── magicmatrix.c ├── magicmatrix.exe ├── magicmatrix.o ├── nnumbersumavg.c ├── nnumbersumavg.exe ├── nnumbersumavg.o ├── reversearrayelements.c ├── reversearrayelements.exe ├── reversearrayelements.o ├── stringcharactercoount.c ├── stringcharactercoount.exe ├── stringcharactercoount.o ├── suminarray.c ├── suminarray.exe ├── suminarray.o ├── sumof2numbersinarray.c ├── sumof2numbersinarray.exe ├── sumof2numbersinarray.o ├── sumofelementsof2differentarrays.c ├── sumofelementsof2differentarrays.exe └── sumofelementsof2differentarrays.o ├── Basic Predefined Programs ├── 01HelloWorld.c ├── 02Sum.c ├── 03Difference.c ├── 04Product.c ├── 05Quotient.c ├── 06Remainder.c ├── 07Armstrong.c ├── 08Datatype_Size.c ├── Factorial of a Number.c ├── Fibonacci.c ├── Matrix Multiplication.c ├── Reverse.c ├── large_factorial.c └── primenumber.c ├── Conditional Programs ├── CheckVowel.c ├── EvenOdd.c ├── Greater.c ├── NthAverage.c ├── Palindrome.c ├── Prime(optimized).c └── Prime.c ├── Input Output ├── Reverse Without Function.c └── input-output.c ├── LICENSE ├── Linked List ├── Program to delete first node of Singly Linked List.c ├── Singly-Linked-List.c ├── orderedlinkedlist.c └── reverselinkedlist.c ├── Miscellaneous ├── ASCII_value.c ├── Decimal to Binary.c ├── Fibonacci Triangle.c ├── Halloween2019.c ├── Happy_Diwali.c ├── Heart_Pattern.c ├── Left_Triangle.c ├── Min&Max.c ├── Pointer.c ├── Right_Triangle.c ├── Seconds to Remaining Hours, Minutes and Seconds.c ├── Sum and Average of n number of elements. [Array].c ├── Swap_With_Temp.c ├── Swap_Without_Temp.c ├── c_witout_main.c ├── full_pyramid.c ├── gcd.c ├── invert_left_Triangle.c └── number_pyramid.c ├── README.md ├── Recursion ├── HailStoneSequence.c ├── Nth-FibonacciNumber.c └── x_Power_y.c ├── Search ├── BinarySearch.c └── LinearSearch.c ├── Sort ├── Binary Tree Sorting .c ├── Bubble-Sort.c ├── CountingSort.c ├── Insertion_Sort.c ├── Merge Sort.c ├── QuickSort.c └── Selection sort.c ├── Tree ├── Binary-Search-Tree.c └── Maximum width of a binary tree.c ├── array ├── 2ARRY.C ├── ARR1.C ├── ARR2.C ├── ARR3.C ├── ARR4.C ├── ARR5.C ├── ARR6.C ├── ARR7.C ├── DIGONL_A.C ├── MATRIX2.C ├── MATRIX4.C ├── MATRIX5.C ├── MAT_MULT.C ├── MULTIDIM.C ├── SAMPLE1.BAK1.txt ├── SAMPLE1.C ├── SIM.C ├── SIM2ARR.C └── SIM2ARRA.C ├── define ├── mac1.c ├── mac2.c └── mac3.c ├── dyanamic m ├── CALLOC1.C ├── MALL.C ├── REALLOC.C ├── REC.C └── typecasting.c ├── dynamic memory ├── CALLOC1.C ├── MALL.C ├── REALLOC.C ├── REC.BAK ├── REC.C ├── ext │ ├── CALLOC.C │ ├── FREE.C │ ├── MALLOC.C │ ├── MALLOCs.C │ └── REALLOC.C └── typecasting.c ├── enum ├── ENUMTEST.C └── NUM1.C ├── file ├── COPY.C ├── COPYDATA.TXT ├── COPYFILE.C ├── DATA.TXT ├── F1.C ├── FBINARY1.C ├── FILE.C ├── FILE2.C ├── FILE3.C ├── FILE4.C ├── FILE5.C ├── FILE6.C ├── FILEstr1.C ├── FRANDOM.C ├── FRE_SCAN.C ├── FSEEK.C ├── FSTRUCT1.C ├── FTELL.C ├── GETC2.C ├── GETW.C ├── GETW1.C ├── LMN.TXT ├── READ.C └── REWIND.C ├── function ├── EVENFUN.C ├── FNRECUR1.C ├── FNRECUR2.C ├── FNSTR1.C ├── FNSTR5.C ├── FUN1.C ├── FUN7.C ├── FUN8.C ├── FUNARR2.C ├── FUNRECUR.C ├── FUNREF2.C ├── FUNRF2.C ├── FUNS2.C ├── FUNS3.C ├── FUNS4.C ├── FUNVAL1.C ├── FUNVALUE.C ├── FUNs1.C ├── NESTFUN.C ├── POWERFUN.C ├── PP.C ├── extra │ ├── FN15.C │ ├── FN16.C │ ├── FN8.C │ ├── funarray │ │ ├── FNARRAY2.C │ │ ├── FNARRAY3.C │ │ ├── FNWITHAR.C │ │ ├── FNWITHPO.C │ │ └── FUNTOPO.C │ ├── funcall │ │ ├── FNCALL1.C │ │ ├── FNCALL2.C │ │ ├── FNCALL3.C │ │ └── FNCALL4.C │ ├── funstr │ │ ├── FNSTR1.C │ │ └── FNSTR5.C │ ├── rec │ │ ├── FNRECUR1.C │ │ ├── FNRECUR2.C │ │ ├── FUNRECUR.C │ │ └── FUNRECUR3.CPP │ ├── type 1 │ │ ├── FN1.BAK │ │ ├── FN1.C │ │ ├── FN12.C │ │ ├── FN13.C │ │ ├── FN14.C │ │ ├── FUN.C │ │ └── FUNS.C │ ├── type 2 │ │ ├── FN10.BAK │ │ ├── FN10.C │ │ ├── FN2.BAK │ │ ├── FN2.C │ │ └── FN6.C │ ├── type 3 │ │ ├── FN3.BAK │ │ ├── FN3.C │ │ └── FN7.C │ └── type 4 │ │ ├── FN11.C │ │ ├── FN17.C │ │ ├── FN18.C │ │ ├── FN19.C │ │ ├── FN5.C │ │ └── FN9.C └── funarray │ ├── FNARRAY2.C │ ├── FNARRAY3.C │ ├── FNWITHAR.C │ ├── FNWITHPO.C │ ├── FUNPOINT.C │ ├── FUNPOS.C │ └── FUNTOPO.C ├── if ├── DIV.C ├── ELS.C ├── F1.C ├── GOTO1.C ├── GOTO2.C ├── IF1.C ├── IF10.C ├── IF11.C ├── IF12.C ├── IF13.C ├── IF14.C ├── IF15.C ├── IF16.C ├── IF17.C ├── IF18.C ├── IF19.C ├── IF2.C ├── IF3.C ├── IF4.C ├── IF5.C ├── IF6.C ├── IF7.C ├── IF8.C ├── IF9.C ├── RESULT.C ├── SALARY.C └── if.c ├── loops ├── AMSTRONG.C ├── BREAK.C ├── CONT.C ├── CONT1.C ├── CONTINUE.C ├── DIGITS.C ├── DO-WHILE.C ├── DOWH1.C ├── DOWH2.C ├── DOWH3.C ├── DOWH4.C ├── DOWH5.C ├── DOWH6.C ├── DOWHILE2.C ├── DOWHILE4.C ├── EVEN.C ├── EVENSUM.C ├── FIBO.C ├── FO1.C ├── FOR1.C ├── FOR2.C ├── FOR3.C ├── FOR4.C ├── FOR5.C ├── PERFECTS.C ├── SUMPRIME.C ├── WH1.C ├── WH2.C ├── WH3.C ├── WH4.C ├── WH5.C ├── WH6.C ├── WH7.C ├── WH8.C ├── WOS.C ├── factor.c ├── goto.c ├── nestfor.c.C └── palindrome.c ├── operator ├── ARITH.C ├── ASD.OBJ ├── COMBINE.C ├── CVB.OBJ ├── INCRE.C ├── INTERCHA.CPP ├── NESTED.OBJ ├── OP.C ├── OP1.C ├── OP2.C ├── OP3.C ├── OP4.C ├── OP5.C ├── OP6.C ├── OP7.C ├── OP8.C ├── OP9.C ├── SQ-CB.C ├── SUMDIGIT.C ├── SUMIT.OBJ ├── SYM.BAK ├── SYM.C ├── SYM.OBJ ├── TER10.C ├── TER3.C ├── TER4.C ├── TER5.C ├── TRIANGLE.C ├── UNARY1.C ├── UNARY3.C ├── UNARY4.C ├── ter6.c └── unary2.c ├── pointer ├── 1POINT.C ├── ARTH1.C ├── INCRE1.C ├── ONEPOINT.C ├── PO2PO.C ├── POARTH.C ├── POARTH2.C ├── POIN.C ├── POINTARR.C ├── POINTERS1.c ├── PP.C ├── PP1.C ├── PTR1.C ├── PTR2.C ├── PTR2PTR.C ├── PTRARTH.C ├── PTRARTH1.C ├── PTRINCR.C ├── PTRSTR.C ├── SIMPOINT.C ├── TWOPO.C ├── TWOPTER.C ├── arth2.C └── artthmetcptr.c └── search └── binarysearch.C /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Don't track filetypes 2 | *.exe -------------------------------------------------------------------------------- /Algorithms/BFS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Algorithms/BFS -------------------------------------------------------------------------------- /Algorithms/BreadthFirstSearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Algorithms/BreadthFirstSearch.c -------------------------------------------------------------------------------- /Algorithms/DFS_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Algorithms/DFS_list.c -------------------------------------------------------------------------------- /Algorithms/Dijikstra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Algorithms/Dijikstra.c -------------------------------------------------------------------------------- /Algorithms/Kadane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Algorithms/Kadane.c -------------------------------------------------------------------------------- /Arrays/Multiplication of matrix/2 by 2 using 2by2 and 2by2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/Multiplication of matrix/2 by 2 using 2by2 and 2by2.c -------------------------------------------------------------------------------- /Arrays/Multiplication of matrix/2 by 2 using 2by2 and 2by2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/Multiplication of matrix/2 by 2 using 2by2 and 2by2.exe -------------------------------------------------------------------------------- /Arrays/Multiplication of matrix/2 by 2 using 2by2 and 2by2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/Multiplication of matrix/2 by 2 using 2by2 and 2by2.o -------------------------------------------------------------------------------- /Arrays/Multiplication of matrix/3 by 3 using 3 by3 and 3by3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/Multiplication of matrix/3 by 3 using 3 by3 and 3by3.c -------------------------------------------------------------------------------- /Arrays/Multiplication of matrix/3 by 3 using 3 by3 and 3by3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/Multiplication of matrix/3 by 3 using 3 by3 and 3by3.exe -------------------------------------------------------------------------------- /Arrays/Multiplication of matrix/3 by 3 using 3 by3 and 3by3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/Multiplication of matrix/3 by 3 using 3 by3 and 3by3.o -------------------------------------------------------------------------------- /Arrays/Multiplication of matrix/3 by 3 using 3by2 and 2by3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/Multiplication of matrix/3 by 3 using 3by2 and 2by3.c -------------------------------------------------------------------------------- /Arrays/Multiplication of matrix/3 by 3 using 3by2 and 2by3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/Multiplication of matrix/3 by 3 using 3by2 and 2by3.exe -------------------------------------------------------------------------------- /Arrays/Multiplication of matrix/3 by 3 using 3by2 and 2by3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/Multiplication of matrix/3 by 3 using 3by2 and 2by3.o -------------------------------------------------------------------------------- /Arrays/addmatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/addmatrix.c -------------------------------------------------------------------------------- /Arrays/addmatrix.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/addmatrix.exe -------------------------------------------------------------------------------- /Arrays/addmatrix.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/addmatrix.o -------------------------------------------------------------------------------- /Arrays/ascendingorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/ascendingorder.c -------------------------------------------------------------------------------- /Arrays/averageandsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/averageandsum.c -------------------------------------------------------------------------------- /Arrays/averageandsum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/averageandsum.exe -------------------------------------------------------------------------------- /Arrays/averageandsum.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/averageandsum.o -------------------------------------------------------------------------------- /Arrays/biggestnumber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/biggestnumber.c -------------------------------------------------------------------------------- /Arrays/biggestnumber.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/biggestnumber.exe -------------------------------------------------------------------------------- /Arrays/biggestnumber.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/biggestnumber.o -------------------------------------------------------------------------------- /Arrays/copyonearraytoanother.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/copyonearraytoanother.c -------------------------------------------------------------------------------- /Arrays/copyonearraytoanother.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/copyonearraytoanother.exe -------------------------------------------------------------------------------- /Arrays/copyonearraytoanother.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/copyonearraytoanother.o -------------------------------------------------------------------------------- /Arrays/countposnegzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/countposnegzero.c -------------------------------------------------------------------------------- /Arrays/countposnegzero.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/countposnegzero.exe -------------------------------------------------------------------------------- /Arrays/countposnegzero.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/countposnegzero.o -------------------------------------------------------------------------------- /Arrays/countrepeatedletter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/countrepeatedletter.c -------------------------------------------------------------------------------- /Arrays/countrepeatedletter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/countrepeatedletter.exe -------------------------------------------------------------------------------- /Arrays/countrepeatedletter.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/countrepeatedletter.o -------------------------------------------------------------------------------- /Arrays/dectobin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/dectobin.c -------------------------------------------------------------------------------- /Arrays/dectobin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/dectobin.exe -------------------------------------------------------------------------------- /Arrays/dectobin.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/dectobin.o -------------------------------------------------------------------------------- /Arrays/descendingorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/descendingorder.c -------------------------------------------------------------------------------- /Arrays/descendingorder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/descendingorder.exe -------------------------------------------------------------------------------- /Arrays/descendingorder.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/descendingorder.o -------------------------------------------------------------------------------- /Arrays/evenoddprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/evenoddprint.c -------------------------------------------------------------------------------- /Arrays/evenoddprint.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/evenoddprint.exe -------------------------------------------------------------------------------- /Arrays/evenoddprint.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/evenoddprint.o -------------------------------------------------------------------------------- /Arrays/highestmarks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/highestmarks.c -------------------------------------------------------------------------------- /Arrays/highestmarks.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/highestmarks.exe -------------------------------------------------------------------------------- /Arrays/highestmarks.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/highestmarks.o -------------------------------------------------------------------------------- /Arrays/invertible.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/invertible.c -------------------------------------------------------------------------------- /Arrays/invertible.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/invertible.exe -------------------------------------------------------------------------------- /Arrays/invertible.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/invertible.o -------------------------------------------------------------------------------- /Arrays/magicmatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/magicmatrix.c -------------------------------------------------------------------------------- /Arrays/magicmatrix.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/magicmatrix.exe -------------------------------------------------------------------------------- /Arrays/magicmatrix.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/magicmatrix.o -------------------------------------------------------------------------------- /Arrays/nnumbersumavg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/nnumbersumavg.c -------------------------------------------------------------------------------- /Arrays/nnumbersumavg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/nnumbersumavg.exe -------------------------------------------------------------------------------- /Arrays/nnumbersumavg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/nnumbersumavg.o -------------------------------------------------------------------------------- /Arrays/reversearrayelements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/reversearrayelements.c -------------------------------------------------------------------------------- /Arrays/reversearrayelements.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/reversearrayelements.exe -------------------------------------------------------------------------------- /Arrays/reversearrayelements.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/reversearrayelements.o -------------------------------------------------------------------------------- /Arrays/stringcharactercoount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/stringcharactercoount.c -------------------------------------------------------------------------------- /Arrays/stringcharactercoount.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/stringcharactercoount.exe -------------------------------------------------------------------------------- /Arrays/stringcharactercoount.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/stringcharactercoount.o -------------------------------------------------------------------------------- /Arrays/suminarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/suminarray.c -------------------------------------------------------------------------------- /Arrays/suminarray.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/suminarray.exe -------------------------------------------------------------------------------- /Arrays/suminarray.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/suminarray.o -------------------------------------------------------------------------------- /Arrays/sumof2numbersinarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/sumof2numbersinarray.c -------------------------------------------------------------------------------- /Arrays/sumof2numbersinarray.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/sumof2numbersinarray.exe -------------------------------------------------------------------------------- /Arrays/sumof2numbersinarray.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/sumof2numbersinarray.o -------------------------------------------------------------------------------- /Arrays/sumofelementsof2differentarrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/sumofelementsof2differentarrays.c -------------------------------------------------------------------------------- /Arrays/sumofelementsof2differentarrays.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/sumofelementsof2differentarrays.exe -------------------------------------------------------------------------------- /Arrays/sumofelementsof2differentarrays.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Arrays/sumofelementsof2differentarrays.o -------------------------------------------------------------------------------- /Basic Predefined Programs/01HelloWorld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Basic Predefined Programs/01HelloWorld.c -------------------------------------------------------------------------------- /Basic Predefined Programs/02Sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Basic Predefined Programs/02Sum.c -------------------------------------------------------------------------------- /Basic Predefined Programs/03Difference.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Basic Predefined Programs/03Difference.c -------------------------------------------------------------------------------- /Basic Predefined Programs/04Product.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Basic Predefined Programs/04Product.c -------------------------------------------------------------------------------- /Basic Predefined Programs/05Quotient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Basic Predefined Programs/05Quotient.c -------------------------------------------------------------------------------- /Basic Predefined Programs/06Remainder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Basic Predefined Programs/06Remainder.c -------------------------------------------------------------------------------- /Basic Predefined Programs/07Armstrong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Basic Predefined Programs/07Armstrong.c -------------------------------------------------------------------------------- /Basic Predefined Programs/08Datatype_Size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Basic Predefined Programs/08Datatype_Size.c -------------------------------------------------------------------------------- /Basic Predefined Programs/Factorial of a Number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Basic Predefined Programs/Factorial of a Number.c -------------------------------------------------------------------------------- /Basic Predefined Programs/Fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Basic Predefined Programs/Fibonacci.c -------------------------------------------------------------------------------- /Basic Predefined Programs/Matrix Multiplication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Basic Predefined Programs/Matrix Multiplication.c -------------------------------------------------------------------------------- /Basic Predefined Programs/Reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Basic Predefined Programs/Reverse.c -------------------------------------------------------------------------------- /Basic Predefined Programs/large_factorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Basic Predefined Programs/large_factorial.c -------------------------------------------------------------------------------- /Basic Predefined Programs/primenumber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Basic Predefined Programs/primenumber.c -------------------------------------------------------------------------------- /Conditional Programs/CheckVowel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Conditional Programs/CheckVowel.c -------------------------------------------------------------------------------- /Conditional Programs/EvenOdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Conditional Programs/EvenOdd.c -------------------------------------------------------------------------------- /Conditional Programs/Greater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Conditional Programs/Greater.c -------------------------------------------------------------------------------- /Conditional Programs/NthAverage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Conditional Programs/NthAverage.c -------------------------------------------------------------------------------- /Conditional Programs/Palindrome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Conditional Programs/Palindrome.c -------------------------------------------------------------------------------- /Conditional Programs/Prime(optimized).c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Conditional Programs/Prime(optimized).c -------------------------------------------------------------------------------- /Conditional Programs/Prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Conditional Programs/Prime.c -------------------------------------------------------------------------------- /Input Output/Reverse Without Function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Input Output/Reverse Without Function.c -------------------------------------------------------------------------------- /Input Output/input-output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Input Output/input-output.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/LICENSE -------------------------------------------------------------------------------- /Linked List/Program to delete first node of Singly Linked List.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Linked List/Program to delete first node of Singly Linked List.c -------------------------------------------------------------------------------- /Linked List/Singly-Linked-List.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Linked List/Singly-Linked-List.c -------------------------------------------------------------------------------- /Linked List/orderedlinkedlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Linked List/orderedlinkedlist.c -------------------------------------------------------------------------------- /Linked List/reverselinkedlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Linked List/reverselinkedlist.c -------------------------------------------------------------------------------- /Miscellaneous/ASCII_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Miscellaneous/ASCII_value.c -------------------------------------------------------------------------------- /Miscellaneous/Decimal to Binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Miscellaneous/Decimal to Binary.c -------------------------------------------------------------------------------- /Miscellaneous/Fibonacci Triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Miscellaneous/Fibonacci Triangle.c -------------------------------------------------------------------------------- /Miscellaneous/Halloween2019.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Miscellaneous/Halloween2019.c -------------------------------------------------------------------------------- /Miscellaneous/Happy_Diwali.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Miscellaneous/Happy_Diwali.c -------------------------------------------------------------------------------- /Miscellaneous/Heart_Pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Miscellaneous/Heart_Pattern.c -------------------------------------------------------------------------------- /Miscellaneous/Left_Triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Miscellaneous/Left_Triangle.c -------------------------------------------------------------------------------- /Miscellaneous/Min&Max.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Miscellaneous/Min&Max.c -------------------------------------------------------------------------------- /Miscellaneous/Pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Miscellaneous/Pointer.c -------------------------------------------------------------------------------- /Miscellaneous/Right_Triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Miscellaneous/Right_Triangle.c -------------------------------------------------------------------------------- /Miscellaneous/Seconds to Remaining Hours, Minutes and Seconds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Miscellaneous/Seconds to Remaining Hours, Minutes and Seconds.c -------------------------------------------------------------------------------- /Miscellaneous/Sum and Average of n number of elements. [Array].c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Miscellaneous/Sum and Average of n number of elements. [Array].c -------------------------------------------------------------------------------- /Miscellaneous/Swap_With_Temp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Miscellaneous/Swap_With_Temp.c -------------------------------------------------------------------------------- /Miscellaneous/Swap_Without_Temp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Miscellaneous/Swap_Without_Temp.c -------------------------------------------------------------------------------- /Miscellaneous/c_witout_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Miscellaneous/c_witout_main.c -------------------------------------------------------------------------------- /Miscellaneous/full_pyramid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Miscellaneous/full_pyramid.c -------------------------------------------------------------------------------- /Miscellaneous/gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Miscellaneous/gcd.c -------------------------------------------------------------------------------- /Miscellaneous/invert_left_Triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Miscellaneous/invert_left_Triangle.c -------------------------------------------------------------------------------- /Miscellaneous/number_pyramid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Miscellaneous/number_pyramid.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/README.md -------------------------------------------------------------------------------- /Recursion/HailStoneSequence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Recursion/HailStoneSequence.c -------------------------------------------------------------------------------- /Recursion/Nth-FibonacciNumber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Recursion/Nth-FibonacciNumber.c -------------------------------------------------------------------------------- /Recursion/x_Power_y.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Recursion/x_Power_y.c -------------------------------------------------------------------------------- /Search/BinarySearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Search/BinarySearch.c -------------------------------------------------------------------------------- /Search/LinearSearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Search/LinearSearch.c -------------------------------------------------------------------------------- /Sort/Binary Tree Sorting .c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Sort/Binary Tree Sorting .c -------------------------------------------------------------------------------- /Sort/Bubble-Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Sort/Bubble-Sort.c -------------------------------------------------------------------------------- /Sort/CountingSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Sort/CountingSort.c -------------------------------------------------------------------------------- /Sort/Insertion_Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Sort/Insertion_Sort.c -------------------------------------------------------------------------------- /Sort/Merge Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Sort/Merge Sort.c -------------------------------------------------------------------------------- /Sort/QuickSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Sort/QuickSort.c -------------------------------------------------------------------------------- /Sort/Selection sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Sort/Selection sort.c -------------------------------------------------------------------------------- /Tree/Binary-Search-Tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Tree/Binary-Search-Tree.c -------------------------------------------------------------------------------- /Tree/Maximum width of a binary tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/Tree/Maximum width of a binary tree.c -------------------------------------------------------------------------------- /array/2ARRY.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/array/2ARRY.C -------------------------------------------------------------------------------- /array/ARR1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/array/ARR1.C -------------------------------------------------------------------------------- /array/ARR2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/array/ARR2.C -------------------------------------------------------------------------------- /array/ARR3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/array/ARR3.C -------------------------------------------------------------------------------- /array/ARR4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/array/ARR4.C -------------------------------------------------------------------------------- /array/ARR5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/array/ARR5.C -------------------------------------------------------------------------------- /array/ARR6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/array/ARR6.C -------------------------------------------------------------------------------- /array/ARR7.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/array/ARR7.C -------------------------------------------------------------------------------- /array/DIGONL_A.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/array/DIGONL_A.C -------------------------------------------------------------------------------- /array/MATRIX2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/array/MATRIX2.C -------------------------------------------------------------------------------- /array/MATRIX4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/array/MATRIX4.C -------------------------------------------------------------------------------- /array/MATRIX5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/array/MATRIX5.C -------------------------------------------------------------------------------- /array/MAT_MULT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/array/MAT_MULT.C -------------------------------------------------------------------------------- /array/MULTIDIM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/array/MULTIDIM.C -------------------------------------------------------------------------------- /array/SAMPLE1.BAK1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/array/SAMPLE1.BAK1.txt -------------------------------------------------------------------------------- /array/SAMPLE1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/array/SAMPLE1.C -------------------------------------------------------------------------------- /array/SIM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/array/SIM.C -------------------------------------------------------------------------------- /array/SIM2ARR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/array/SIM2ARR.C -------------------------------------------------------------------------------- /array/SIM2ARRA.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/array/SIM2ARRA.C -------------------------------------------------------------------------------- /define/mac1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/define/mac1.c -------------------------------------------------------------------------------- /define/mac2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/define/mac2.c -------------------------------------------------------------------------------- /define/mac3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/define/mac3.c -------------------------------------------------------------------------------- /dyanamic m/CALLOC1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/dyanamic m/CALLOC1.C -------------------------------------------------------------------------------- /dyanamic m/MALL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/dyanamic m/MALL.C -------------------------------------------------------------------------------- /dyanamic m/REALLOC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/dyanamic m/REALLOC.C -------------------------------------------------------------------------------- /dyanamic m/REC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/dyanamic m/REC.C -------------------------------------------------------------------------------- /dyanamic m/typecasting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/dyanamic m/typecasting.c -------------------------------------------------------------------------------- /dynamic memory/CALLOC1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/dynamic memory/CALLOC1.C -------------------------------------------------------------------------------- /dynamic memory/MALL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/dynamic memory/MALL.C -------------------------------------------------------------------------------- /dynamic memory/REALLOC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/dynamic memory/REALLOC.C -------------------------------------------------------------------------------- /dynamic memory/REC.BAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/dynamic memory/REC.BAK -------------------------------------------------------------------------------- /dynamic memory/REC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/dynamic memory/REC.C -------------------------------------------------------------------------------- /dynamic memory/ext/CALLOC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/dynamic memory/ext/CALLOC.C -------------------------------------------------------------------------------- /dynamic memory/ext/FREE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/dynamic memory/ext/FREE.C -------------------------------------------------------------------------------- /dynamic memory/ext/MALLOC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/dynamic memory/ext/MALLOC.C -------------------------------------------------------------------------------- /dynamic memory/ext/MALLOCs.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/dynamic memory/ext/MALLOCs.C -------------------------------------------------------------------------------- /dynamic memory/ext/REALLOC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/dynamic memory/ext/REALLOC.C -------------------------------------------------------------------------------- /dynamic memory/typecasting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/dynamic memory/typecasting.c -------------------------------------------------------------------------------- /enum/ENUMTEST.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/enum/ENUMTEST.C -------------------------------------------------------------------------------- /enum/NUM1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/enum/NUM1.C -------------------------------------------------------------------------------- /file/COPY.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/COPY.C -------------------------------------------------------------------------------- /file/COPYDATA.TXT: -------------------------------------------------------------------------------- 1 | gaurav 2 | abhimanyu 3 | pradnya 4 | raj 5 | -------------------------------------------------------------------------------- /file/COPYFILE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/COPYFILE.C -------------------------------------------------------------------------------- /file/DATA.TXT: -------------------------------------------------------------------------------- 1 | gaurav 2 | abhimanyu 3 | pradnya 4 | raj 5 | -------------------------------------------------------------------------------- /file/F1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/F1.C -------------------------------------------------------------------------------- /file/FBINARY1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/FBINARY1.C -------------------------------------------------------------------------------- /file/FILE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/FILE.C -------------------------------------------------------------------------------- /file/FILE2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/FILE2.C -------------------------------------------------------------------------------- /file/FILE3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/FILE3.C -------------------------------------------------------------------------------- /file/FILE4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/FILE4.C -------------------------------------------------------------------------------- /file/FILE5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/FILE5.C -------------------------------------------------------------------------------- /file/FILE6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/FILE6.C -------------------------------------------------------------------------------- /file/FILEstr1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/FILEstr1.C -------------------------------------------------------------------------------- /file/FRANDOM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/FRANDOM.C -------------------------------------------------------------------------------- /file/FRE_SCAN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/FRE_SCAN.C -------------------------------------------------------------------------------- /file/FSEEK.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/FSEEK.C -------------------------------------------------------------------------------- /file/FSTRUCT1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/FSTRUCT1.C -------------------------------------------------------------------------------- /file/FTELL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/FTELL.C -------------------------------------------------------------------------------- /file/GETC2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/GETC2.C -------------------------------------------------------------------------------- /file/GETW.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/GETW.C -------------------------------------------------------------------------------- /file/GETW1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/GETW1.C -------------------------------------------------------------------------------- /file/LMN.TXT: -------------------------------------------------------------------------------- 1 | sheetal 2 | pradnya 3 | manali 4 | kala 5 | sdasd 6 | -------------------------------------------------------------------------------- /file/READ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/READ.C -------------------------------------------------------------------------------- /file/REWIND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/file/REWIND.C -------------------------------------------------------------------------------- /function/EVENFUN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/EVENFUN.C -------------------------------------------------------------------------------- /function/FNRECUR1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/FNRECUR1.C -------------------------------------------------------------------------------- /function/FNRECUR2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/FNRECUR2.C -------------------------------------------------------------------------------- /function/FNSTR1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/FNSTR1.C -------------------------------------------------------------------------------- /function/FNSTR5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/FNSTR5.C -------------------------------------------------------------------------------- /function/FUN1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/FUN1.C -------------------------------------------------------------------------------- /function/FUN7.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/FUN7.C -------------------------------------------------------------------------------- /function/FUN8.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/FUN8.C -------------------------------------------------------------------------------- /function/FUNARR2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/FUNARR2.C -------------------------------------------------------------------------------- /function/FUNRECUR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/FUNRECUR.C -------------------------------------------------------------------------------- /function/FUNREF2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/FUNREF2.C -------------------------------------------------------------------------------- /function/FUNRF2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/FUNRF2.C -------------------------------------------------------------------------------- /function/FUNS2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/FUNS2.C -------------------------------------------------------------------------------- /function/FUNS3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/FUNS3.C -------------------------------------------------------------------------------- /function/FUNS4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/FUNS4.C -------------------------------------------------------------------------------- /function/FUNVAL1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/FUNVAL1.C -------------------------------------------------------------------------------- /function/FUNVALUE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/FUNVALUE.C -------------------------------------------------------------------------------- /function/FUNs1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/FUNs1.C -------------------------------------------------------------------------------- /function/NESTFUN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/NESTFUN.C -------------------------------------------------------------------------------- /function/POWERFUN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/POWERFUN.C -------------------------------------------------------------------------------- /function/PP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/PP.C -------------------------------------------------------------------------------- /function/extra/FN15.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/FN15.C -------------------------------------------------------------------------------- /function/extra/FN16.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/FN16.C -------------------------------------------------------------------------------- /function/extra/FN8.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/FN8.C -------------------------------------------------------------------------------- /function/extra/funarray/FNARRAY2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/funarray/FNARRAY2.C -------------------------------------------------------------------------------- /function/extra/funarray/FNARRAY3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/funarray/FNARRAY3.C -------------------------------------------------------------------------------- /function/extra/funarray/FNWITHAR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/funarray/FNWITHAR.C -------------------------------------------------------------------------------- /function/extra/funarray/FNWITHPO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/funarray/FNWITHPO.C -------------------------------------------------------------------------------- /function/extra/funarray/FUNTOPO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/funarray/FUNTOPO.C -------------------------------------------------------------------------------- /function/extra/funcall/FNCALL1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/funcall/FNCALL1.C -------------------------------------------------------------------------------- /function/extra/funcall/FNCALL2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/funcall/FNCALL2.C -------------------------------------------------------------------------------- /function/extra/funcall/FNCALL3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/funcall/FNCALL3.C -------------------------------------------------------------------------------- /function/extra/funcall/FNCALL4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/funcall/FNCALL4.C -------------------------------------------------------------------------------- /function/extra/funstr/FNSTR1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/funstr/FNSTR1.C -------------------------------------------------------------------------------- /function/extra/funstr/FNSTR5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/funstr/FNSTR5.C -------------------------------------------------------------------------------- /function/extra/rec/FNRECUR1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/rec/FNRECUR1.C -------------------------------------------------------------------------------- /function/extra/rec/FNRECUR2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/rec/FNRECUR2.C -------------------------------------------------------------------------------- /function/extra/rec/FUNRECUR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/rec/FUNRECUR.C -------------------------------------------------------------------------------- /function/extra/rec/FUNRECUR3.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/rec/FUNRECUR3.CPP -------------------------------------------------------------------------------- /function/extra/type 1/FN1.BAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 1/FN1.BAK -------------------------------------------------------------------------------- /function/extra/type 1/FN1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 1/FN1.C -------------------------------------------------------------------------------- /function/extra/type 1/FN12.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 1/FN12.C -------------------------------------------------------------------------------- /function/extra/type 1/FN13.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 1/FN13.C -------------------------------------------------------------------------------- /function/extra/type 1/FN14.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 1/FN14.C -------------------------------------------------------------------------------- /function/extra/type 1/FUN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 1/FUN.C -------------------------------------------------------------------------------- /function/extra/type 1/FUNS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 1/FUNS.C -------------------------------------------------------------------------------- /function/extra/type 2/FN10.BAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 2/FN10.BAK -------------------------------------------------------------------------------- /function/extra/type 2/FN10.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 2/FN10.C -------------------------------------------------------------------------------- /function/extra/type 2/FN2.BAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 2/FN2.BAK -------------------------------------------------------------------------------- /function/extra/type 2/FN2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 2/FN2.C -------------------------------------------------------------------------------- /function/extra/type 2/FN6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 2/FN6.C -------------------------------------------------------------------------------- /function/extra/type 3/FN3.BAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 3/FN3.BAK -------------------------------------------------------------------------------- /function/extra/type 3/FN3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 3/FN3.C -------------------------------------------------------------------------------- /function/extra/type 3/FN7.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 3/FN7.C -------------------------------------------------------------------------------- /function/extra/type 4/FN11.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 4/FN11.C -------------------------------------------------------------------------------- /function/extra/type 4/FN17.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 4/FN17.C -------------------------------------------------------------------------------- /function/extra/type 4/FN18.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 4/FN18.C -------------------------------------------------------------------------------- /function/extra/type 4/FN19.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 4/FN19.C -------------------------------------------------------------------------------- /function/extra/type 4/FN5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 4/FN5.C -------------------------------------------------------------------------------- /function/extra/type 4/FN9.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/extra/type 4/FN9.C -------------------------------------------------------------------------------- /function/funarray/FNARRAY2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/funarray/FNARRAY2.C -------------------------------------------------------------------------------- /function/funarray/FNARRAY3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/funarray/FNARRAY3.C -------------------------------------------------------------------------------- /function/funarray/FNWITHAR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/funarray/FNWITHAR.C -------------------------------------------------------------------------------- /function/funarray/FNWITHPO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/funarray/FNWITHPO.C -------------------------------------------------------------------------------- /function/funarray/FUNPOINT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/funarray/FUNPOINT.C -------------------------------------------------------------------------------- /function/funarray/FUNPOS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/funarray/FUNPOS.C -------------------------------------------------------------------------------- /function/funarray/FUNTOPO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/function/funarray/FUNTOPO.C -------------------------------------------------------------------------------- /if/DIV.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/DIV.C -------------------------------------------------------------------------------- /if/ELS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/ELS.C -------------------------------------------------------------------------------- /if/F1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/F1.C -------------------------------------------------------------------------------- /if/GOTO1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/GOTO1.C -------------------------------------------------------------------------------- /if/GOTO2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/GOTO2.C -------------------------------------------------------------------------------- /if/IF1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/IF1.C -------------------------------------------------------------------------------- /if/IF10.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/IF10.C -------------------------------------------------------------------------------- /if/IF11.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/IF11.C -------------------------------------------------------------------------------- /if/IF12.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/IF12.C -------------------------------------------------------------------------------- /if/IF13.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/IF13.C -------------------------------------------------------------------------------- /if/IF14.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/IF14.C -------------------------------------------------------------------------------- /if/IF15.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/IF15.C -------------------------------------------------------------------------------- /if/IF16.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/IF16.C -------------------------------------------------------------------------------- /if/IF17.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/IF17.C -------------------------------------------------------------------------------- /if/IF18.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/IF18.C -------------------------------------------------------------------------------- /if/IF19.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/IF19.C -------------------------------------------------------------------------------- /if/IF2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/IF2.C -------------------------------------------------------------------------------- /if/IF3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/IF3.C -------------------------------------------------------------------------------- /if/IF4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/IF4.C -------------------------------------------------------------------------------- /if/IF5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/IF5.C -------------------------------------------------------------------------------- /if/IF6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/IF6.C -------------------------------------------------------------------------------- /if/IF7.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/IF7.C -------------------------------------------------------------------------------- /if/IF8.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/IF8.C -------------------------------------------------------------------------------- /if/IF9.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/IF9.C -------------------------------------------------------------------------------- /if/RESULT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/RESULT.C -------------------------------------------------------------------------------- /if/SALARY.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/SALARY.C -------------------------------------------------------------------------------- /if/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/if/if.c -------------------------------------------------------------------------------- /loops/AMSTRONG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/AMSTRONG.C -------------------------------------------------------------------------------- /loops/BREAK.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/BREAK.C -------------------------------------------------------------------------------- /loops/CONT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/CONT.C -------------------------------------------------------------------------------- /loops/CONT1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/CONT1.C -------------------------------------------------------------------------------- /loops/CONTINUE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/CONTINUE.C -------------------------------------------------------------------------------- /loops/DIGITS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/DIGITS.C -------------------------------------------------------------------------------- /loops/DO-WHILE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/DO-WHILE.C -------------------------------------------------------------------------------- /loops/DOWH1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/DOWH1.C -------------------------------------------------------------------------------- /loops/DOWH2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/DOWH2.C -------------------------------------------------------------------------------- /loops/DOWH3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/DOWH3.C -------------------------------------------------------------------------------- /loops/DOWH4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/DOWH4.C -------------------------------------------------------------------------------- /loops/DOWH5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/DOWH5.C -------------------------------------------------------------------------------- /loops/DOWH6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/DOWH6.C -------------------------------------------------------------------------------- /loops/DOWHILE2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/DOWHILE2.C -------------------------------------------------------------------------------- /loops/DOWHILE4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/DOWHILE4.C -------------------------------------------------------------------------------- /loops/EVEN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/EVEN.C -------------------------------------------------------------------------------- /loops/EVENSUM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/EVENSUM.C -------------------------------------------------------------------------------- /loops/FIBO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/FIBO.C -------------------------------------------------------------------------------- /loops/FO1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/FO1.C -------------------------------------------------------------------------------- /loops/FOR1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/FOR1.C -------------------------------------------------------------------------------- /loops/FOR2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/FOR2.C -------------------------------------------------------------------------------- /loops/FOR3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/FOR3.C -------------------------------------------------------------------------------- /loops/FOR4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/FOR4.C -------------------------------------------------------------------------------- /loops/FOR5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/FOR5.C -------------------------------------------------------------------------------- /loops/PERFECTS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/PERFECTS.C -------------------------------------------------------------------------------- /loops/SUMPRIME.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/SUMPRIME.C -------------------------------------------------------------------------------- /loops/WH1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/WH1.C -------------------------------------------------------------------------------- /loops/WH2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/WH2.C -------------------------------------------------------------------------------- /loops/WH3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/WH3.C -------------------------------------------------------------------------------- /loops/WH4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/WH4.C -------------------------------------------------------------------------------- /loops/WH5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/WH5.C -------------------------------------------------------------------------------- /loops/WH6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/WH6.C -------------------------------------------------------------------------------- /loops/WH7.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/WH7.C -------------------------------------------------------------------------------- /loops/WH8.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/WH8.C -------------------------------------------------------------------------------- /loops/WOS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/WOS.C -------------------------------------------------------------------------------- /loops/factor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/factor.c -------------------------------------------------------------------------------- /loops/goto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/goto.c -------------------------------------------------------------------------------- /loops/nestfor.c.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/nestfor.c.C -------------------------------------------------------------------------------- /loops/palindrome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/loops/palindrome.c -------------------------------------------------------------------------------- /operator/ARITH.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/ARITH.C -------------------------------------------------------------------------------- /operator/ASD.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/ASD.OBJ -------------------------------------------------------------------------------- /operator/COMBINE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/COMBINE.C -------------------------------------------------------------------------------- /operator/CVB.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/CVB.OBJ -------------------------------------------------------------------------------- /operator/INCRE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/INCRE.C -------------------------------------------------------------------------------- /operator/INTERCHA.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/INTERCHA.CPP -------------------------------------------------------------------------------- /operator/NESTED.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/NESTED.OBJ -------------------------------------------------------------------------------- /operator/OP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/OP.C -------------------------------------------------------------------------------- /operator/OP1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/OP1.C -------------------------------------------------------------------------------- /operator/OP2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/OP2.C -------------------------------------------------------------------------------- /operator/OP3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/OP3.C -------------------------------------------------------------------------------- /operator/OP4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/OP4.C -------------------------------------------------------------------------------- /operator/OP5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/OP5.C -------------------------------------------------------------------------------- /operator/OP6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/OP6.C -------------------------------------------------------------------------------- /operator/OP7.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/OP7.C -------------------------------------------------------------------------------- /operator/OP8.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/OP8.C -------------------------------------------------------------------------------- /operator/OP9.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/OP9.C -------------------------------------------------------------------------------- /operator/SQ-CB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/SQ-CB.C -------------------------------------------------------------------------------- /operator/SUMDIGIT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/SUMDIGIT.C -------------------------------------------------------------------------------- /operator/SUMIT.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/SUMIT.OBJ -------------------------------------------------------------------------------- /operator/SYM.BAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/SYM.BAK -------------------------------------------------------------------------------- /operator/SYM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/SYM.C -------------------------------------------------------------------------------- /operator/SYM.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/SYM.OBJ -------------------------------------------------------------------------------- /operator/TER10.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/TER10.C -------------------------------------------------------------------------------- /operator/TER3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/TER3.C -------------------------------------------------------------------------------- /operator/TER4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/TER4.C -------------------------------------------------------------------------------- /operator/TER5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/TER5.C -------------------------------------------------------------------------------- /operator/TRIANGLE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/TRIANGLE.C -------------------------------------------------------------------------------- /operator/UNARY1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/UNARY1.C -------------------------------------------------------------------------------- /operator/UNARY3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/UNARY3.C -------------------------------------------------------------------------------- /operator/UNARY4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/UNARY4.C -------------------------------------------------------------------------------- /operator/ter6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/ter6.c -------------------------------------------------------------------------------- /operator/unary2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/operator/unary2.c -------------------------------------------------------------------------------- /pointer/1POINT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/1POINT.C -------------------------------------------------------------------------------- /pointer/ARTH1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/ARTH1.C -------------------------------------------------------------------------------- /pointer/INCRE1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/INCRE1.C -------------------------------------------------------------------------------- /pointer/ONEPOINT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/ONEPOINT.C -------------------------------------------------------------------------------- /pointer/PO2PO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/PO2PO.C -------------------------------------------------------------------------------- /pointer/POARTH.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/POARTH.C -------------------------------------------------------------------------------- /pointer/POARTH2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/POARTH2.C -------------------------------------------------------------------------------- /pointer/POIN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/POIN.C -------------------------------------------------------------------------------- /pointer/POINTARR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/POINTARR.C -------------------------------------------------------------------------------- /pointer/POINTERS1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/POINTERS1.c -------------------------------------------------------------------------------- /pointer/PP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/PP.C -------------------------------------------------------------------------------- /pointer/PP1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/PP1.C -------------------------------------------------------------------------------- /pointer/PTR1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/PTR1.C -------------------------------------------------------------------------------- /pointer/PTR2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/PTR2.C -------------------------------------------------------------------------------- /pointer/PTR2PTR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/PTR2PTR.C -------------------------------------------------------------------------------- /pointer/PTRARTH.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/PTRARTH.C -------------------------------------------------------------------------------- /pointer/PTRARTH1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/PTRARTH1.C -------------------------------------------------------------------------------- /pointer/PTRINCR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/PTRINCR.C -------------------------------------------------------------------------------- /pointer/PTRSTR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/PTRSTR.C -------------------------------------------------------------------------------- /pointer/SIMPOINT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/SIMPOINT.C -------------------------------------------------------------------------------- /pointer/TWOPO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/TWOPO.C -------------------------------------------------------------------------------- /pointer/TWOPTER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/TWOPTER.C -------------------------------------------------------------------------------- /pointer/arth2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/arth2.C -------------------------------------------------------------------------------- /pointer/artthmetcptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/pointer/artthmetcptr.c -------------------------------------------------------------------------------- /search/binarysearch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh98trivedi/C-Programs/HEAD/search/binarysearch.C --------------------------------------------------------------------------------