{"id":27091329,"url":"https://github.com/yashkolte/learnc-problemquestion","last_synced_at":"2025-04-06T07:37:55.844Z","repository":{"id":273467795,"uuid":"298323012","full_name":"yashkolte/LearnC-ProblemQuestion","owner":"yashkolte","description":"This repository is designed to help you master the C programming language by practicing problems and understanding core concepts step by step.","archived":false,"fork":false,"pushed_at":"2025-01-21T04:21:40.000Z","size":147,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-21T05:20:53.049Z","etag":null,"topics":["cprogramming"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yashkolte.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-09-24T15:41:06.000Z","updated_at":"2025-01-21T04:32:32.000Z","dependencies_parsed_at":"2025-01-21T05:20:59.013Z","dependency_job_id":"8942e3b2-c226-4194-a803-372455722b0c","html_url":"https://github.com/yashkolte/LearnC-ProblemQuestion","commit_stats":null,"previous_names":["yashkolte/learnc-problemquestion"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yashkolte%2FLearnC-ProblemQuestion","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yashkolte%2FLearnC-ProblemQuestion/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yashkolte%2FLearnC-ProblemQuestion/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yashkolte%2FLearnC-ProblemQuestion/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yashkolte","download_url":"https://codeload.github.com/yashkolte/LearnC-ProblemQuestion/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247451502,"owners_count":20940946,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cprogramming"],"created_at":"2025-04-06T07:37:55.219Z","updated_at":"2025-04-06T07:37:55.838Z","avatar_url":"https://github.com/yashkolte.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Learn C - Problem and Practice Questions\n\nWelcome to the **Learn C** repository! This repository is designed to help you master the C programming language by practicing problems and understanding core concepts step by step. It is a comprehensive collection of C programs that cover topics from the basics to advanced concepts.\n\n## Repository Structure\nThe repository is organized as follows:\n\n```\n└── yashkolte-learnc-probleamquestion/\n    ├── 1-Intro.c\n    ├── 2-Variables.c\n    ├── 3-input.c\n    ├── 4-RectangleArea.c\n    ├── 5-CircleArea.c\n    ├── 6-TempConverter.c\n    ├── 7-SICalc.c\n    ├── 8-ArtimeticInstruc.c\n    ├── 9-OperatorPrecedence.c\n    ├── 10-PracticeSet.c\n    ├── 11-IfBasic.c\n    ├── 12-IfElse.c\n    ├── 13-IfElseIf.c\n    ├── 14-Ternary.c\n    ├── 15-Switch.c\n    ├── 16-GradeProgram.c\n    ├── 17-PracticeSet-1.c\n    ├── 17-PracticeSet-2.c\n    ├── ...\n    └── try.c\n```\n\nEach file in the directory corresponds to a specific concept, program, or practice set. \n\n## Getting Started\n\n### Prerequisites\nTo compile and run the C programs in this repository, you will need:\n\n- A C compiler (e.g., GCC, Clang, or any IDE with C support like Code::Blocks, Dev-C++, or Visual Studio Code).\n- Basic understanding of programming concepts.\n\n### Clone the Repository\nClone the repository to your local machine using the following command:\n\n```bash\ngit clone https://github.com/yashkolte/LearnC-ProblemQuestion.git\ncd LearnC-ProblemQuestion\n```\n\n### Compile and Run a Program\nYou can compile and run any `.c` file using the GCC compiler. For example:\n\n```bash\ngcc 1-Intro.c -o intro\n./intro\n```\n\n### Directory Overview\n\n| File/Program            | Description |\n|-------------------------|-------------|\n| `1-Intro.c`             | Introduction to C programming. |\n| `2-Variables.c`         | Understanding variables and data types. |\n| `10-PracticeSet.c`      | Basic practice set for beginners. |\n| `16-GradeProgram.c`     | Program to calculate grades using conditions. |\n| `29-RanNumGen.c`        | Random number generator program. |\n| `52-Strings.c`          | Introduction to strings in C. |\n| `65-Structures.c`       | Basic structure implementation in C. |\n| `69-ShowFunction.c`     | Function examples for better understanding. |\n\nFor a complete list of files, refer to the repository structure above.\n\n## How to Use This Repository\n\n1. **Start with Basics**: Begin with the introductory files like `1-Intro.c` and `2-Variables.c` to build a strong foundation.\n2. **Solve Practice Sets**: Files named `PracticeSet` contain problem sets designed to test your knowledge.\n3. **Explore Advanced Topics**: Gradually move to advanced topics such as pointers, structures, and file handling.\n4. **Experiment**: Modify the code and observe the changes to strengthen your understanding.\n\n## Contributing\n\nContributions are welcome! If you have any suggestions or improvements, feel free to:\n\n1. Fork the repository.\n2. Create a new branch.\n3. Make your changes.\n4. Submit a pull request.\n\n## License\nThis repository is licensed under the MIT License. You are free to use, modify, and distribute the content with attribution.\n\n## Author\nThis project is maintained by [Yash Kolte](https://github.com/yashkolte).\n\nHappy coding! 🚀\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyashkolte%2Flearnc-problemquestion","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyashkolte%2Flearnc-problemquestion","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyashkolte%2Flearnc-problemquestion/lists"}