Category Archives: C Language

Function Cube of Number in C Programming

“Function Cube of Number in C Programming” is a C programming language program. It uses a user defined function that receives a parameter number n. It then computes and returns cube of that number. The following image shows the source code of the programmer defined function cube() and output of this C program. The source… Read More »

Loading

Alphabet Continuous Pattern in C Programming

“Alphabet Continuous Pattern in C Programming” represents a C language program to show the above mentioned Continuous ABC Alphabets shape or pattern as shown in the following figure: The source code of this C language program to show continuous alphabet pattern is in the following code block.  This code is in C programming language.  It… Read More »

Loading

Alphabet Triangle Pattern in C Programming

“Print Alphabet ABCDE Pattern in C Programming” is a basic C program to print triangle of ABCDE alphabets as shown in the following figure: The source code of alphabet triangle in C programming is as follows: /* Write a C program to print alphabet pattern triangle as shown below A AB ABC ABCD ABCDE */… Read More »

Loading