Gideon Baturegideonbature.hashnode.dev·May 31, 2023C Program to Print the Lowercase Alphabet in ReverseIntroduction In this article, you are going to learn how to print to standard output all the alphabet but this time around in reverse. We are simply going to loop through all the alphabet while printing them out one after the other, but instead of in...Discuss·20 likes·103 readslowercase
Gideon Baturegideonbature.hashnode.dev·May 30, 2023C Program to Print the Alphabet in Lowercase Except m and cIntroduction This program is going to print all the alphabets from a to z, except for alphabet m and c. We will be using the putchar() function and will be printing a new line at the end. To achieve this, we will be using the Betty style of coding, a...Discuss·11 likes·73 reads2Articles1Week
Gideon Baturegideonbature.hashnode.dev·May 29, 2023A Simple C Program That Prints The Alphabet in Lowercase And UppercaseIntroduction Alphabets are simply letters from a to z, which could be in uppercase (capitalized) or in lowercase. How to Generate and Print All Alphabet in Lowercase followed by an Uppercase To achieve this, we are going to be using the putchar() fun...Discuss·10 likes·117 readslowercase
Gideon Baturegideonbature.hashnode.dev·May 27, 2023How to Write a Program That Prints All Possible Combinations of Two Two-Digit Numbers in CIntroduction In this guide you will learn how to print all possible combinations of Two Two-digit numbers in C, each two-digits are separated with a space between them, and the two digits have a comma followed by a space before the next pair of two-d...Discuss·11 likes·749 readsC
Gideon Baturegideonbature.hashnode.dev·May 26, 2023How to Write a Program That Prints All Possible Different Combinations of Three Digits in CIntroduction We have done this for single digits numbers, double digits numbers, we want to use the same application to achieve the same thing for the three digits number too, using the putchar where no digit is to be repeated (e.g. 000, 111, 222, 33...Discuss·10 likes·168 readsC
Gideon Baturegideonbature.hashnode.dev·May 25, 2023How to Write a Program That Prints All Possible Different Combinations of Two Digits in CIntroduction I started with how to print all single digits in C. So I will be going further in this article to show you how to print different combinations of two digits in C, where numbers like 00, 11, 22, 33, 44.... etc are not considered and only ...Discuss·11 likes·367 reads2Articles1Week
Gideon Baturegideonbature.hashnode.dev·May 24, 2023How to Write a Program That Prints All Single-Digit Numbers in CIntroduction In this article, you will learn how to print out all the single-digit numbers in C starting from 0 down to 9. Here we will print the numbers followed by a comma and a space, and we will only be using the putchar function and lastly, we w...Discuss·21 likes·239 readsC