C Program to Rectangle Star Pattern

In this tutorial; i am going to show you how to print rectangle star pattern in c with the help of for loop and while loop. All C Programs to Rectangle Star Pattern C Program to Rectangle Star Pattern using For Loop /* C Program to Print Rectangle Star Pattern */ #include<stdio.h> int main() { … Read more

C Program to Find GCD of Two Numbers

The greatest common divisor (GCD) of two or more numbers is the greatest common factor number that divides them, exactly. It is also called the highest common factor (HCF). For example, the greatest common factor of 15 and 10 is 5, since both the numbers can be divided by 5. 15/5 = 3 10/5 = 2 … Read more

C else-if Statements

Else if statement in c programming; In this tutorial, i am going to show you what is else if statements in C programming with examples. C else-if Statements In c programming else-if ladder is used to decide among multiple options. The if statements are executed from the top down. As soon as one of the conditions … Read more

Pointers in C Programming with examples

Pointers in c programming language; In this tutorial, i am going to show you about pointers in c programming with the help of it’s syntax, declaration, types of pointers, advantages, disadvantages and examples. Pointers in C Programming Here, i will show you about pointers in c programming with the help of it’s syntax, declaration, types … Read more