How to print an integer entered by an user
In this program, an object of scanner class, reader is created to take input from standard input, Which is keyboard.
Write a C Program to Find G.C.D (Greatest Common Divisor) Using Recursion
In this C Program, we are reading the two integer number using 'a' and 'b' variable. The gcd() function is used to find the GCD of two entered integers using recursion.
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.
C Program to display its own source code as output
This program is to display its own source code. it also explains logic to print source code of a C program itself. You should have basic knowledge of file handling in c to wrote c program to print source code of itself as output.