Ogechukwu Itunu AinaforOgechukwu Ainaogeainatech.hashnode.net·Feb 3, 2023How Children can learn programming Language more effectivelyIt is true that children can be taught to program, but it is not easy when they are just learning to program often children ages 7-15 years of age. In order to learn a programming language, children must first learn the basics of coding. 1. Why kids ...Discuss·7 likes·34 readsC programming language
Andrew MbuguaforAndrew Mbugua's blogandrewmbugua.hashnode.net·Jan 8, 2023Beginning my career in Low Level ProgrammingLow-level development has been a niche area as most of the developers out there(including the ones in my circle) have chosen to abstract away from the lower levels and focus on higher-level languages such as Java & Python. I was(still am) very intere...Discuss·4 likes·88 readsC programming language
Kunal GaikwadforKunal's Blogthetechwriter526.hashnode.net·Feb 8, 2023"The Fundamentals of Data Types in the C Programming Language"As a programming language, C is well known for its efficiency and versatility. One of the key aspects that make C a powerful language is its rich set of data types. In this article, we will explore the basic data types in C and understand how they ca...Discuss·1 likefundamentals
Chiagoziem Elgibbor forChiagoziem's Blogelgibbor.hashnode.net·Apr 24, 2023What happens when you type "gcc main.c" (C compilation process)Have you ever wondered what occurs behind the scenes when a C program is compiled? Everything begins with a single command: "gcc main.c". But what precisely happens when you press enter? In this post, we'll go over the C compilation process step by s...Discussc programming
Edeh sharonforSharon’s blog shannychi.hashnode.net·Apr 14, 2023Linked ListJust like the name implies a link is a ring or loop in a chain. In this article, we will discuss Linked list in c language. What is a Linked List? A linked list can be defined as a chain of data structures, that includes a series of connected nodes. ...DiscussC
IAN HUMPHREYforKanteezkanteezblog.hashnode.net·Apr 5, 2023Intro to Pointers in C for newbies.Pointers are a fundamental concept in C programming that allows the manipulation of memory locations and the data stored in those locations. Pointers play a crucial role in many programming tasks, such as dynamic memory allocation, passing variables ...Discuss·1 like·78 readsC programming language
Walid EzzatforJust Create It ;walidezzat.hashnode.net·Mar 25, 2023parameters /arguments/pointersfunction definition: a block of code for a specific task. Function Declaration: Ex: int addNumbers(int x, int y); Function Calling: Ex: Int m = 5, n = 7; int result = addNumbers(m,n); Function Definition: Ex: int addNumbers(int x, int y){ int sum...Discuss·141 readsC programming language
Edeh sharonforSharon’s blog shannychi.hashnode.net·Mar 23, 2023Dynamic Memory Allocation in CLet's take a step back to what Memory is. what is Memory? Memory is a sizable collection of bytes. In programming, we refer to RAM (Randon Access Memory) when talking about memory. The RAM is made up of different areas. Stack which is managed automa...Discuss·41 readsC
Lawrence Juma "Jumalaw98"forJumalaw98jumalaw98.hashnode.net·Mar 21, 2023Basic Syntax of C ProgramC is a popular general-purpose programming language used by devs worldwide to create a wide range of applications. as with any programming language, it has a specific syntax that developers must adhere to when writing code. in this article, we'll exp...DiscussC programming language
Manish KumarforManishmanishmk.hashnode.net·Mar 7, 2023Creating a Simple Text Editor Using C Programming LanguageAs someone who is interested in programming and exploring different programming languages, I decided to create a simple text editor using the C programming language. This project allowed me to gain a deeper understanding of the language while also al...Discuss·26 readsText Editors
Prince Kwakye OforiforPrince Kwakye Oforikwakye792.hashnode.net·Mar 2, 2023Body Check: How to Calculate Your BMI Using a C ProgramIntroduction: In this article, we will discuss a program written in C language that calculates the body mass index (BMI) of an individual based on their height and weight. The program will then interpret the BMI result to determine if the individual ...Discuss·53 readsC programming language
Kunal GaikwadforKunal's Blogthetechwriter526.hashnode.net·Feb 8, 2023"The Fundamentals of Data Types in the C Programming Language"As a programming language, C is well known for its efficiency and versatility. One of the key aspects that make C a powerful language is its rich set of data types. In this article, we will explore the basic data types in C and understand how they ca...Discuss·1 likefundamentals
Ogechukwu Itunu AinaforOgechukwu Ainaogeainatech.hashnode.net·Feb 3, 2023How Children can learn programming Language more effectivelyIt is true that children can be taught to program, but it is not easy when they are just learning to program often children ages 7-15 years of age. In order to learn a programming language, children must first learn the basics of coding. 1. Why kids ...Discuss·7 likes·34 readsC programming language