Soham Sandbhorcbasic-to-advanced-by-tim-buchalka.hashnode.dev·Oct 29, 2024Day 8 Of C:basic To Advanced: arrays And Their Operatons🚀 INTRODUCTION TO ARRAY Array is basically the collection of similar data values in a single variable. Arrays are introduced in square brackets[]. Arrays allows you to access a group of values together under a single name . As when we define an arra...#cbasictoadvanced
Harald Branavanwhy-programmers-need-linux.hashnode.dev·Oct 8, 2024Why Learning C is Essential to Becoming a Better ProgrammerThe Foundation of All Programming Languages In the fast-paced world of technology, where new programming languages and frameworks emerge every day, one language has stood the test of time: C. Often referred to as the "father of all programming langua...whyc
Anto Jebikshanantojebikshan.hashnode.dev·Aug 14, 2024Bill Management using C (Terminal based)Building a Simple Terminal-Based Billing System in C: A Step-by-Step Guide Introduction In this article, we'll delve into creating a simple yet functional terminal-based billing system using the C programming language. This project is perfect for tho...BillingSystemusingC
Asem Hamidasem-hamid.hashnode.dev·Aug 8, 2024Snake and Ladder GameSnake and Ladder Game Snake and Ladder Game repository contains a console-based implementation of the classic Snake and Ladder game in C. This game is a mini project created to demonstrate the fundamentals of C programming in a fun and interactive w...projects
Asem Hamidasem-hamid.hashnode.dev·Aug 8, 2024Learn C : A GitHub Repo for BeginnersLearn C Learn C repository is designed to help beginners learn C programming through code examples, projects, and detailed explanations. Additionally, contributions from the community are highly encouraged to enhance and expand the content. It is des...beginner
Circuit Talescircuit-tales.tech·Jul 28, 2024Understanding return 1, return -1, and exit (1) in C Programming1. return 1; Usage: This is usually used to return from the main function in a C program. Meaning: Returning 1 from main typically indicates an error or abnormal termination of the program. Example #include <stdio.h> int main() { // Some con...226 reads#ReturnStatement
Mritunjay Kumarcodecomponents.hashnode.dev·May 2, 2024Mastering the fundamentals of C languageTopics Covered: INTRODUCTION TO C What is a program? What is a software? What is a language? What is a translator? What is a programming paradigm? What is called monolithic programming paradigm? Function oriented programming structure Object...1 like·118 reads#LearnC
Emmanuel Enchillamoaful.hashnode.dev·Jan 22, 2024Develop a Calculator in C - Part IIIIntroduction Oh hail, the moments of relief when signs of accomplishments lit our sights. Our rewards await our persistence; the pride of a gained value from another milestone conquered. Welcome to the the third and last part in our quest to develop ...C
Emmanuel Enchillamoaful.hashnode.dev·Jan 22, 2024Develop a Calculator in C - Part IIIntroduction It's awesome when we put in the effort to build on our knowledge base and to work on advancing a project. In the first part of our calculator project, we created functions to read input from the keyboard and printed everything onto the s...C
Emmanuel Enchillamoaful.hashnode.dev·Jan 22, 2024Develop a Calculator in C - Part IIntroduction The C Programming Language is well known for its steep learning curve. It easily catches learners - particularly beginners, off-guard and put them on the pedestal. However, aside the fact that the world moves on the wheels of C, what mor...165 readsC