C Program to Find GCD (Greatest Common Divisor) Using Recursion

Write a C Program to Find G.C.D (Greatest Common Divisor) Using RecursionIn this C Program, we are reading the two integer number using 'a' and 'b' variable. The...
April 22, 2023

Find the Roots of a Quadratic Equation in C Programming

C program to find Roots of a Quadratic Equation.In this program, you will learn to find the roots of a quadratic equation in c programming.The standard form of...
March 07, 2023

C Program to display its own source code as output

 C Program to display its own source code as outputThis program is to display its own source code. it also explains logic to print source code of a...
October 26, 2022

Write a C program to print hollow pyramid star pattern

Hollow Pyramid Star PatternFor the pyramid at the first line it will print one star, and at the last line it will print n number of stars. For...
August 24, 2022

Write a C program to print full diamond star pattern

Full Diamond Star Pattern In C Programming Language For printing the star full diamond pattern, the number of line is taken as input. The pattern is divided into two...
August 13, 2022

Write a C program to print following 1-2-3 patterns

1-2-3 patternsI)            1        12        123        1234        12345        Program:#include<stdio.h>#include<conio.h>int main(){    int a,b,c;    printf("Enter the number:...
August 06, 2022