This repository contains all programs implementation in C language from B.tech Programming syllabus. Most of the programms from Let Us c and C in Depth books.
- On windows download the Devcppsoftware.
- Now open the folder in Devcppsoftware and open the program which you want to run
- Click on the compile button. (It will compile the program)
- Click on the run button to execute the program.
- You can directly compile and run program from commandline in windows. (same as linux)
- Open the folder in any texteditor(Vscode, jeany, etc.)
- Open terminal
- Compile the program
$ gcc program_name.c -o program_name
# if your program contains any mathematic function ('math.h')
# then link math library as
$ gcc -lm program_name.c -o program_name- run the program
$ ./program_name
Same as windows or linux
- 
All types of patterns printing through C. 
- 
This Folder contains programs using Control Statements like if-else, while loop, for loop, etc. 
- 
This Folder contains programms using functions. 
- 
Programms on arrays 
- 
Programms of strings in c 
- 
Programms using structures 
- 
Working with files in C - Read File
- Write File
- Copy file
- Merge Files
- Count chars, words, etc.
- Creating database using files
 
- 
Preprocessors in C language. 
- 
This folder contains some basic projects with C. - Date Manupulation
- FILE EnCRYPTER
- Tic Tak Toe(open Tic_tac.exefile to run) 
- Tic Tak Toe LITE(LITE version)
 
#its_Kumar(Kumar Shanu)