{"id":28471056,"url":"https://github.com/intscription/c-programs","last_synced_at":"2025-07-01T20:32:16.503Z","repository":{"id":172789852,"uuid":"649772579","full_name":"IntScription/c-programs","owner":"IntScription","description":"Data Structures in C ","archived":false,"fork":false,"pushed_at":"2024-07-26T06:07:12.000Z","size":29,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-07T10:07:38.529Z","etag":null,"topics":["pointers","stacks"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/IntScription.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-05T15:46:09.000Z","updated_at":"2024-07-26T06:07:15.000Z","dependencies_parsed_at":"2024-07-26T07:27:18.569Z","dependency_job_id":"1d9b41fd-f61a-4cf7-ba9d-a97afa4ea6b5","html_url":"https://github.com/IntScription/c-programs","commit_stats":null,"previous_names":["xenderador/c-programs","intscription/c-programs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/IntScription/c-programs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IntScription%2Fc-programs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IntScription%2Fc-programs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IntScription%2Fc-programs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IntScription%2Fc-programs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/IntScription","download_url":"https://codeload.github.com/IntScription/c-programs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IntScription%2Fc-programs/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263033061,"owners_count":23403086,"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":["pointers","stacks"],"created_at":"2025-06-07T10:07:38.267Z","updated_at":"2025-07-01T20:32:16.471Z","avatar_url":"https://github.com/IntScription.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# What is C Programming ?\nThe C programming language is a general-purpose, operating system-agnostic, and procedural language that supports structured programming and provides low-level access to the system memory. Dennis Ritchie invented C language in 1972 at AT\u0026T (then called Bell Laboratory), where it was implemented in the UNIX system on DEC PDP II. It was also the successor of the B programming language invented by Ken Thompson. C was designed to overcome the problems encountered by BASIC, B, and BPCL programming languages. By 1980, C became the most popular language for mainframes, microcomputers, and minicomputers. \n\n## Data Types \n\n| **Type**        | **Size (in bytes)**     |**Format Specifier** |\n|:--------------: | :---------------------: | :-----------------: |\n| int             |  min 2, normally 4      |   %d                |\n| char            |      1                  |   %c                |\n| float           |      4                  |   %f                |\n| double          |      8                  |   %lf               |\n| short int       |    2 normally           |   %hd               |\n| unsigned int    | min 2, normally 4       |   %u                |\n| long int        | min 4, normally 8       |   %li               |\n| long long int   |     min 8               |   %lli              |\n|unsigned long int|     min 4               |   %lu               |\n|  signed char    |       1                 |   %c                |\n| unsigned char   |       1                 |   %c                |\n| long double     |min 10, normally 12 or 16|   %Lf               |\n\n\u003c!--![image](https://github.com/Xenderador/c-programs/assets/68114908/72ea7445-1d41-41f3-9bff-c51e999565db)--\u003e\n\n### Structure of C Program\n``` C\n    #include \u003cstdio.h\u003e                        // Header\n    int main()                                // Main\n    {                                         // Code inside \"{}\" is the body \n       printf(\"\\n This is a C Program \");      // Statement: Instructions given to compiler\n       return 0;                              // Returns value from main()\n    }\n```\n***[Hello World ](https://github.com/Xenderador/c-programs/blob/main/Hello_World/helloworld.c)***\n##\n![image](https://github.com/Xenderador/c-programs/assets/68114908/f854a229-a392-4bf9-b990-b8c4b66f94e4)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fintscription%2Fc-programs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fintscription%2Fc-programs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fintscription%2Fc-programs/lists"}