Oluchukwu Ughagwuoluchukwu-ughagwu.hashnode.dev·12 hours agoMastering Bitwise Operators in C: A Beginner-Friendly GuideI used to dread the bitwise operators topic and know I wasn't alone in that boat. Bitwise operators and operations are easy concepts once you grasp the basics. In this article, I will simplify bitwise operators in clear terms without any jargon. Simp...Discussc programming
Ifunanya Nwalusiukafuufuu.hashnode.dev·Sep 25, 2023C - FunctionsJust know that Functions in C are simply used to perform a specific task. It is usually a block of code. Functions are handy because you only need to write the code once, and then you can use it over and over; all you need to do is call it. Every C p...Discuss·1 likeThe world of C programmingC
Oluchukwu Ughagwuoluchukwu-ughagwu.hashnode.dev·Sep 22, 2023Exploring Functions Executed Before and After main() in C.Introduction to Main Function in C In C programming, the main function is the entry point of a program. There can be only one main function in a program. The operating system calls the main function to execute a program. Contrary to popular opinion t...AJAGUN SAMUEL EVESHOFASE and 1 other are discussing this2 people are discussing thisDiscuss·5 likes·51 reads2Articles1Week
Ifunanya Nwalusiukafuufuu.hashnode.dev·Sep 23, 2023C - PointersDo C pointers have you scratching your head, feeling like you've stumbled into a sci-fi movie? Don't worry; I'm here to make them as simple as ordering a pizza online. By the way, I'm a big fan of pizza! Let's turn those pointer puzzles into a piece ...Discuss·2 likes·118 readsThe world of C programmingC
Clifford Mapesacliffordmapesa.hashnode.dev·Sep 22, 2023Functions in CA function in C is a block of code that performs specific tasks when called. They are also called subroutines or procedures. They are used to perform certain actions and are important in code reuseability: Define the code once and use it multiple tim...Discussprogramming
Oluchukwu Ughagwuoluchukwu-ughagwu.hashnode.dev·Sep 21, 2023Return Statement in a Void Function: A Comprehensive GuideUnderstanding Void Functions Void functions in programming are known as operations that do not have a return value. When you want to execute an instruction without needing a result, you make use of a void function. You may be wondering; but a print s...Discuss·6 likes·64 readsc programming
Adebayo Ahmadmachalla.hashnode.dev·Sep 17, 2023Write a program for a school grading system in CCreating a school grading system in C involves multiple components, including defining classes, storing student data, calculating grades, and displaying results. #include <stdio.h> int main() { /** 80-100 A 70-79 B 65-69 C 60-64 D 50-59 E Below 40 F ...Discussschool grading system
Kushal Ghimireerkushalghimire.com.np·Sep 16, 2023Memory Layout In CTo understand memory management in C, you must be familiar with memory segments, storage class specifiers, datatypes, type qualifiers and type modifiers. Let us discuss each topic in detail. Note: This section is very important for writing an effici...Discuss·1 like·76 readsmemory-management
Oluchukwu Ughagwuoluchukwu-ughagwu.hashnode.dev·Sep 14, 2023Demystifying File Permissions in C: A Beginner's GuideIntroduction to File Permissions in C To understand the concept of file permissions in C, you can liken it to giving out the keys to your house so that others can have access to it. You own the house and therefore you are the owner; you always have p...Discusslinux file permissions
Kushal Ghimireerkushalghimire.com.np·Sep 12, 2023Fundamentals of a computer systemWhat is a computer? What are the components of a computer system? Introduction A computer is an electronic device that accepts inputs from the input devices, processes them and displays the result in output devices. The result obtained can also be s...Discuss·1 like·96 readsC