C program to print prime numbers from 1 to N; Through this tutorial, we will learn how to print prime numbers from 1 to N(10, 100, 500, 1000, etc) in the c program using for loop, while loop, and recursion.
Category: C
C Program to Check Whether a Number is Prime or Not
C program to check whether a number is prime or not; Through this tutorial, we will learn how to check whether a number is prime or not using for loop, while loop, and function. A number that’s only divisible by
Read More C Program to Check Whether a Number is Prime or Not
C Program to Check Perfect Number
C program to check perfect number; Through this tutorial, we will learn how to check perfect number in c program using for loop, while loop and function. C Program to Check Perfect Number C Program to find Perfect Number using
C Program to Check Whether a Number is Palindrome or Not
C program to check whether a number is palindrome or not; Through this tutorial, we will learn how to check whether a number is palindrome or not in the c program using for loop, while loop, recursion and function. Algorithm
Read More C Program to Check Whether a Number is Palindrome or Not
C Program to Check Neon Number
C program to check neon number; Through this tutorial, we will learn how to check neon number in c program using for loop, while loop and function. Let’s use the following algorithm to write a program to check whether a number
C Program to Print Natural Numbers From N to 1 in Reverse Order
C program to print all natural numbers from n to 1; Through this tutorial, we will learn how to c program to print all natural numbers from n (10, 100, 500, 1000, etc) to 1 using for loop, while loop
Read More C Program to Print Natural Numbers From N to 1 in Reverse Order
C Program to Print Natural Numbers from 1 to N
C program to print all natural numbers from 1 to n; Through this tutorial, we will learn how to c program to print all natural numbers from 1 to n (10, 100, 500, 1000, etc) using for loop, while loop
C Program to Find LCM of Two Numbers
C program to find the lcm of two numbers; Through this tutorial, we will learn how to find the lcm of two numbers using for loop, while loop, recursion and gcd. Programs to find LCM of Two Numbers in C
C Program to Calculate Gross Salary of an Employee
C program to calculate the gross salary of an employee; Through this tutorial, we will learn how to calculate the gross salary of an employee. Program 1 – C Program to Calculate Gross Salary of an Employee The output of
Read More C Program to Calculate Gross Salary of an Employee
C Program to Find Generic Root of a Number
C program to find the generic root of a number; Through this tutorial, we will learn how to find the generic root of a number using while loop and functions. Programs to Find Generic Root of a Number in C