© 2023 Hashnode
#c-program
One of the projects I previously worked on as part of my software engineering training at ALX Arica was building a simple shell that mimics the Bash shell but with limited features. Recently, I have …
In order to practicalize our knowledge of data structures like stacks and queues in C language, we were tasked with building a C program that acts as a Monty bytecode interpreter. What is the Monty B…
In this post I'm gonna share you amazing unique C Program to Delete an Element from an Array. In order to clear all Basics of C Programming you can visit my Full C Programming Course for Free. Delete …
#include <stdio.h> int display(int x) { if (x < 0) { return (0); } printf("%d", x + display(x - 1)); x--; return (x); } int main(void) { display(4); return (…
Let me start by using some analogies that you can easily understand, so we will build on them. What are functions in computer programming Do you remember how you were taught about verbs (action words…
To be able to answer this question, you need to understand what a fibonacci number is and how to derive a fibonacci sequence. A fibnonacci number is any number in a sequence which happens to be the su…
0, 1, 2, 3, 4, 5, 6, 7, 8, 9 The question is about writing a C program that produces the outcome above. There are several ways we can have a program to print all the possible combinations of single-di…
What is Betty style and documentation in C programming? As part of the Software Engineering program at ALX and Holberton School, we are taught to employ the Betty style of coding and Betty documentati…
During a peer learning day discussion amongst myself and my colleagues in the ALX Software Engineering (May 2022 cohort), we tasked ourselves with this project to help us understand the implementation…
We are still in the introductory lessons to C programming, and in this article, we are going to write a program that will print all the alphabets in lowercase. This task will introduce us to a very im…