https://github.com/dashroshan/c-practice-questions
📝 Solved practice questions from different topics of the C programming language
https://github.com/dashroshan/c-practice-questions
c practice-questions-solved
Last synced: 11 months ago
JSON representation
📝 Solved practice questions from different topics of the C programming language
- Host: GitHub
- URL: https://github.com/dashroshan/c-practice-questions
- Owner: dashroshan
- Created: 2021-11-09T14:45:29.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-05T06:24:02.000Z (over 4 years ago)
- Last Synced: 2025-07-08T13:06:51.159Z (12 months ago)
- Topics: c, practice-questions-solved
- Language: C
- Homepage:
- Size: 133 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Programming in ANSI C Exercises
These are my answers to the exercise problems from E. Balagurusamy's Programming in Ansi C book. Solutions are present as individual C files inside their respective chapter directories.
### Contents
| ID | Chapter |
| --- | --- |
| 01 | Overview of C |
| 02 | Constants, Variables and Datatypes |
| 03 | Operators and Expressions |
| 04 | Managing Input and Output Operations |
| 05 | Decision Making and Branching |
| 06 | Decision Making and Looping |
| 07 | Arrays |
| 08 | Character Arrays and Strings |
| 09 | User-Defined Functions |
| 10 | Structures and Unions |
| 11 | Pointers |
| 12 | File Management in C |
| 13 | Dynamic Memory Allocation and Linked List |
| 14 | The Preprocessor |