{"id":21881433,"url":"https://github.com/mrsumanbiswas/c","last_synced_at":"2025-04-15T05:16:50.060Z","repository":{"id":61676900,"uuid":"553822336","full_name":"mrsumanbiswas/C","owner":"mrsumanbiswas","description":"C Language","archived":false,"fork":false,"pushed_at":"2022-12-15T17:54:05.000Z","size":392,"stargazers_count":8,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-15T05:16:44.553Z","etag":null,"topics":["advanced-c","c","c-basics","c-by-mrsumanbiswas","c-language","c-tutorial","docmentation","hello-world","learning-c","low-level-programming","mrsumanbiswas","pointers-and-references"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mrsumanbiswas.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-10-18T20:36:40.000Z","updated_at":"2024-12-05T13:12:27.000Z","dependencies_parsed_at":"2023-01-29T04:01:05.411Z","dependency_job_id":null,"html_url":"https://github.com/mrsumanbiswas/C","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrsumanbiswas%2FC","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrsumanbiswas%2FC/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrsumanbiswas%2FC/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrsumanbiswas%2FC/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrsumanbiswas","download_url":"https://codeload.github.com/mrsumanbiswas/C/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249010221,"owners_count":21197796,"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":["advanced-c","c","c-basics","c-by-mrsumanbiswas","c-language","c-tutorial","docmentation","hello-world","learning-c","low-level-programming","mrsumanbiswas","pointers-and-references"],"created_at":"2024-11-28T09:18:53.452Z","updated_at":"2025-04-15T05:16:50.041Z","avatar_url":"https://github.com/mrsumanbiswas.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# C Language #\n\n![the-c-programming-language.png](./assets/screenshots/the-c-programming-language.png)\n\n# What is C?\n- C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972.\n\n- It is a very popular language, despite being old.\n\n- C is strongly associated with UNIX, as it was developed to write the UNIX operating system.\n\n# Why Learn C?\n- It is one of the most popular programming language in the world.\n- If you know C, you will have no problem learning other popular programming languages such as Java, Python, C++, C#, etc, as the syntax is similar.\n- C is very fast, compared to other programming languages, like Java and Python.\n- C is very versatile; it can be used in both applications and technologies\nDifference between C and C++\n- C++ was developed as an extension of C, and both languages have almost the same syntax.\n- The main difference between C and C++ is that C++ support classes and objects, while C does not.\n\n- **For more visit: [C (programming language)](https://en.wikipedia.org/wiki/C_(programming_language))**\n\n\n# Get Started With C\nTo start using C, you need two things:\n\n- A text editor, like Notepad, to write C code.\n- A compiler, like GCC, to translate the C code into a language that the computer will understand.\nThere are many text editors and compilers to choose from. In this tutorial, we will use an IDE (see below).\n\n# Install IDE\n- An IDE (Integrated Development Environment) is used to edit AND compile the code.\n\n- Popular IDE's include Code::Blocks, Eclipse, and Visual Studio. These are all free, and they can be used to both edit and debug C code.\n\n- Note: Web-based IDE's can work as well, but functionality is limited.\n\n- We will use `vscode` in our tutorial, which we believe is a good place to start.\n\n- You can find the latest version of vscode at https://code.visualstudio.com/download.\n\n![vscode](./assets/screenshots/download-vscode.png)\n\n\n\n# C Quickstart\n### Let's create our first C file.\n\n#### Add hello world source code file\n- Open vscode \n- In the File Explorer title bar, select New File and name the file helloworld.c\n\n![new-file-button](./assets/screenshots/new-file-button.png)\n\n- Write the following C code and save the file as firstprogram.c (File \u003e Save File as):\n\n\u003e firstprogram.c\n```c\n#include \u003cstdio.h\u003e\n\nint main() {\n  printf(\"Hello World!\\n\");\n  return 0;\n}\n```\n- open terminal\n\n![toggle-termial](./assets/screenshots/toggle-terminal.png)\n\n- run this command\n```bash\n$ gcc helloworld.c -o a.out \u0026\u0026 ./a.out\n```\n\u003e output \n```text\nHello World!\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrsumanbiswas%2Fc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrsumanbiswas%2Fc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrsumanbiswas%2Fc/lists"}