17/07/2019

Design Different types of Pattern in C Programming, Pyramid, Pascal, Floyd's, etc:  We draw some pattern using C-Language here using control statement. 1. Print Half-Pyramid Using Number in C Programming: Half-Pyramid Using Number Important...

16/03/2019

Find g.c.d of two integers in C-Programming using for-loop: First of all, what are g.c.d means? g.c.d means Greatest common divisor, it is also known as h.c.f i.e. Highest common factor. For example, g.c.d of 9 and 6 is 3 since 3 is the greatest integer...

09/03/2019

Find ASCII value in C-Programming: What is ASCII value? ASCII stands for American Standard Code for Information Interchange. Below is the ASCII character table, including descriptions of the first 32 characters. ASCII was originally designed for use...

04/03/2019

Design  *  triangle in C-Programming:   Here we Design a triangle with "*". You have to give number of rows and it will print that triangle including given number of rows with element "*". See the picture below, its looks like this. Important...

01/03/2019

Design a Latin square in C-Programming: So first of all we have to know what is a Latin square? By definition a Latin square is an arrangement of letters or symbols that occur n times, in a 2-dimensional array of n2 compartments so that no letters...

26/02/2019

Find the transpose of a matrix in C-Programming:  First of all we have to know what is the definition of the transpose of a matrix. For a matrix A, we define the transpose of A by AT interchanging the elements of corresponding row and column...

22/02/2019

Find the largest number in C-Programming:  Here we find the largest number among 3 three numbers. We first give the required code then we will explain. This programming is valid for real numbers not for complex numbers. Important Tools: 1....