#c-program
Read more stories on Hashnode
Articles with this tag
A basic shell that prints a prompt, waits for user to enter command and prints what they entered on the next line · One of the projects I previously...
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 practical recursion problem with its logic helping you understand how recursion works. · #include <stdio.h> int display(int x) { if (x < 0) ...
Functions, how to create them and use them, simplified for the absolute beginner at C programming · Let me start by using some analogies that you can...
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...
Using both putchar and printf functions with for and while loops · 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 The question is about writing a C program that produces...