├── .gitignore ├── LICENSE ├── README.md ├── c-program-to-find-maximum-and-minimum-range-of-data-types-using-macro.c ├── data ├── append.txt ├── compare1.txt ├── compare2.txt ├── copy-file.txt ├── even-numbers.txt ├── file1.txt ├── file2.txt ├── numbers.txt ├── odd-numbers.txt └── prime-numbers.txt └── src ├── file ├── append-data.c ├── compare-file.c ├── copy-file-contents.c ├── copy-file-using-function.c ├── create-and-write-contents-to-file.c ├── file-programming-example-list.md ├── read-from-file-using-fgetc.c ├── read-from-file-using-fgets.c └── read-numbers-write-even-odd-prime-to-separate-file.c └── stdlib ├── atof.c ├── atoi.c ├── atol.c ├── atoll.c ├── strtol.c ├── strtoll.c ├── strtoul.c └── strtoull.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/README.md -------------------------------------------------------------------------------- /c-program-to-find-maximum-and-minimum-range-of-data-types-using-macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/c-program-to-find-maximum-and-minimum-range-of-data-types-using-macro.c -------------------------------------------------------------------------------- /data/append.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/data/append.txt -------------------------------------------------------------------------------- /data/compare1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/data/compare1.txt -------------------------------------------------------------------------------- /data/compare2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/data/compare2.txt -------------------------------------------------------------------------------- /data/copy-file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/data/copy-file.txt -------------------------------------------------------------------------------- /data/even-numbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/data/even-numbers.txt -------------------------------------------------------------------------------- /data/file1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/data/file1.txt -------------------------------------------------------------------------------- /data/file2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/data/file2.txt -------------------------------------------------------------------------------- /data/numbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/data/numbers.txt -------------------------------------------------------------------------------- /data/odd-numbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/data/odd-numbers.txt -------------------------------------------------------------------------------- /data/prime-numbers.txt: -------------------------------------------------------------------------------- 1 | 10128193 2 | 73193311 3 | 39019033 4 | -------------------------------------------------------------------------------- /src/file/append-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/src/file/append-data.c -------------------------------------------------------------------------------- /src/file/compare-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/src/file/compare-file.c -------------------------------------------------------------------------------- /src/file/copy-file-contents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/src/file/copy-file-contents.c -------------------------------------------------------------------------------- /src/file/copy-file-using-function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/src/file/copy-file-using-function.c -------------------------------------------------------------------------------- /src/file/create-and-write-contents-to-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/src/file/create-and-write-contents-to-file.c -------------------------------------------------------------------------------- /src/file/file-programming-example-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/src/file/file-programming-example-list.md -------------------------------------------------------------------------------- /src/file/read-from-file-using-fgetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/src/file/read-from-file-using-fgetc.c -------------------------------------------------------------------------------- /src/file/read-from-file-using-fgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/src/file/read-from-file-using-fgets.c -------------------------------------------------------------------------------- /src/file/read-numbers-write-even-odd-prime-to-separate-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/src/file/read-numbers-write-even-odd-prime-to-separate-file.c -------------------------------------------------------------------------------- /src/stdlib/atof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/src/stdlib/atof.c -------------------------------------------------------------------------------- /src/stdlib/atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/src/stdlib/atoi.c -------------------------------------------------------------------------------- /src/stdlib/atol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/src/stdlib/atol.c -------------------------------------------------------------------------------- /src/stdlib/atoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/src/stdlib/atoll.c -------------------------------------------------------------------------------- /src/stdlib/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/src/stdlib/strtol.c -------------------------------------------------------------------------------- /src/stdlib/strtoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/src/stdlib/strtoll.c -------------------------------------------------------------------------------- /src/stdlib/strtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/src/stdlib/strtoul.c -------------------------------------------------------------------------------- /src/stdlib/strtoull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajPrakashh/Codeforwin-C-programming/HEAD/src/stdlib/strtoull.c --------------------------------------------------------------------------------