├── +ve or -ve.c ├── .github └── workflows │ ├── c-cpp.yml │ └── main.yml ├── README.md ├── a.exe ├── area of square.c ├── avg of first n natural numbers.c ├── biggest number.c ├── binary search.c ├── binary to decimal.c ├── calculate avg of n students.c ├── copying string using pointers.c ├── difference of 2 integers.c ├── display days of a week.c ├── display exam result.c ├── displaying even n odd numbers btwn m and n.c ├── double pointer.c ├── eligible to vote.c ├── even or odd using if else.c ├── even or odd.c ├── factorialof a number.c ├── givn yr is leap yr or not.c ├── integers between n and m.c ├── large of 2 num.c ├── largest of 3 nums using && oprt.c ├── largrest of 3 nums using ternry optr.c ├── linear search.c ├── matrix addition.c ├── matrix multiplication.c ├── matrix subraction.c ├── multiplication_table.c ├── no of vowels and consonants in a string.c ├── pascal's triangle.c ├── product of two numbers.c ├── read n integers and display sum of even elemens.c ├── read n integers and display sum of odd elemens.c ├── reverse of number.c ├── roots quadratic eqtn.c ├── sgpa.c ├── simple calculator.c ├── sorting.c ├── stirng lemgth using while loop.c ├── string compare using while.c ├── string copy.c ├── string length.c ├── string operations(str.h).c ├── string using while loop.c ├── string_concatenation.c ├── strncat().c ├── sum n avg of integers.c ├── sum of 10 numbers.c ├── sum.c ├── taylor series for sinx(dirt).c ├── taylor series of sinx.c ├── trace of a matrix.c ├── unique.c └── vowel or not.c /+ve or -ve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/+ve or -ve.c -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/README.md -------------------------------------------------------------------------------- /a.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/a.exe -------------------------------------------------------------------------------- /area of square.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/area of square.c -------------------------------------------------------------------------------- /avg of first n natural numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/avg of first n natural numbers.c -------------------------------------------------------------------------------- /biggest number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/biggest number.c -------------------------------------------------------------------------------- /binary search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/binary search.c -------------------------------------------------------------------------------- /binary to decimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/binary to decimal.c -------------------------------------------------------------------------------- /calculate avg of n students.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/calculate avg of n students.c -------------------------------------------------------------------------------- /copying string using pointers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/copying string using pointers.c -------------------------------------------------------------------------------- /difference of 2 integers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/difference of 2 integers.c -------------------------------------------------------------------------------- /display days of a week.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/display days of a week.c -------------------------------------------------------------------------------- /display exam result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/display exam result.c -------------------------------------------------------------------------------- /displaying even n odd numbers btwn m and n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/displaying even n odd numbers btwn m and n.c -------------------------------------------------------------------------------- /double pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/double pointer.c -------------------------------------------------------------------------------- /eligible to vote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/eligible to vote.c -------------------------------------------------------------------------------- /even or odd using if else.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/even or odd using if else.c -------------------------------------------------------------------------------- /even or odd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/even or odd.c -------------------------------------------------------------------------------- /factorialof a number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/factorialof a number.c -------------------------------------------------------------------------------- /givn yr is leap yr or not.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/givn yr is leap yr or not.c -------------------------------------------------------------------------------- /integers between n and m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/integers between n and m.c -------------------------------------------------------------------------------- /large of 2 num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/large of 2 num.c -------------------------------------------------------------------------------- /largest of 3 nums using && oprt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/largest of 3 nums using && oprt.c -------------------------------------------------------------------------------- /largrest of 3 nums using ternry optr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/largrest of 3 nums using ternry optr.c -------------------------------------------------------------------------------- /linear search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/linear search.c -------------------------------------------------------------------------------- /matrix addition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/matrix addition.c -------------------------------------------------------------------------------- /matrix multiplication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/matrix multiplication.c -------------------------------------------------------------------------------- /matrix subraction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/matrix subraction.c -------------------------------------------------------------------------------- /multiplication_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/multiplication_table.c -------------------------------------------------------------------------------- /no of vowels and consonants in a string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/no of vowels and consonants in a string.c -------------------------------------------------------------------------------- /pascal's triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/pascal's triangle.c -------------------------------------------------------------------------------- /product of two numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/product of two numbers.c -------------------------------------------------------------------------------- /read n integers and display sum of even elemens.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/read n integers and display sum of even elemens.c -------------------------------------------------------------------------------- /read n integers and display sum of odd elemens.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/read n integers and display sum of odd elemens.c -------------------------------------------------------------------------------- /reverse of number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/reverse of number.c -------------------------------------------------------------------------------- /roots quadratic eqtn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/roots quadratic eqtn.c -------------------------------------------------------------------------------- /sgpa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/sgpa.c -------------------------------------------------------------------------------- /simple calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/simple calculator.c -------------------------------------------------------------------------------- /sorting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/sorting.c -------------------------------------------------------------------------------- /stirng lemgth using while loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/stirng lemgth using while loop.c -------------------------------------------------------------------------------- /string compare using while.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/string compare using while.c -------------------------------------------------------------------------------- /string copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/string copy.c -------------------------------------------------------------------------------- /string length.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/string length.c -------------------------------------------------------------------------------- /string operations(str.h).c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/string operations(str.h).c -------------------------------------------------------------------------------- /string using while loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/string using while loop.c -------------------------------------------------------------------------------- /string_concatenation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/string_concatenation.c -------------------------------------------------------------------------------- /strncat().c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/strncat().c -------------------------------------------------------------------------------- /sum n avg of integers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/sum n avg of integers.c -------------------------------------------------------------------------------- /sum of 10 numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/sum of 10 numbers.c -------------------------------------------------------------------------------- /sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/sum.c -------------------------------------------------------------------------------- /taylor series for sinx(dirt).c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/taylor series for sinx(dirt).c -------------------------------------------------------------------------------- /taylor series of sinx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/taylor series of sinx.c -------------------------------------------------------------------------------- /trace of a matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/trace of a matrix.c -------------------------------------------------------------------------------- /unique.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/unique.c -------------------------------------------------------------------------------- /vowel or not.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan45672/c-progrms/HEAD/vowel or not.c --------------------------------------------------------------------------------