C program to print first n even natural numbers; Through this tutorial, we will learn how to print first n (10, 100, 1000 .. N) even natural numbers in the c program with the help for loop and while loop
Category: C
C Program to find Sum of Even and Odd Numbers in Given Range
C program to find the sum of even and odd numbers in the given range; Through this tutorial, we will learn how to find the sum of even and odd numbers in the given range in the c program with
Read More C Program to find Sum of Even and Odd Numbers in Given Range
C Program to Find Square Root of a Number
C program to find square root of a number; Through this tutorial, you will learn how to find the square root of a number in the c program with the help sqrt function and without function. Algorithm and Programs to
C Program to Find Square of a Number
C program to find square of a number; Through this tutorial, you will learn how to find the square of a number in the c program with the help of function and normal formula. Algorithm and Programs to Find Square
C program to find sum and average of given 3 numbers
C program to find sum and average of 3 and 5 numbers; In this tutorial, you will learn how to find sum and average of 3 and 5 numbers in c. Algorithm and Programs to Find Sum and Average of
Read More C program to find sum and average of given 3 numbers
C Program to Calculate Standard Deviation
C program to find standard deviation; Through this tutorial, we will learn how to find the standard deviation in c program. Programs to Calculate Standard Deviation in C C Program to Find Standard Deviation The output of the above c
C Program to Find Roots of a Quadratic Equation
C program to find root of a quadratic equation; Through this tutorial, you will learn how to find the root of a quadratic equation in c program. The standard form of a quadratic equation is: ax2 + bx + c
C Program to find size of int, float, double, and char
C Program to find the size of data types (int, float, double, and char); In this tutorial, we will learn how to find the size of int, float, double and chart data types in c program. Using the sizeof(variable)operator with %lu or %zu format
Read More C Program to find size of int, float, double, and char
C Program to Find ncr
C program to find ncr; Through this tutorial, we will learn how to find ncr in c program. In mathematics, combination or nCr, is the method of selection of ‘r’ objects from a set of ‘n’ objects where the order
C Program to Print 1 to 100 Without using Loop
C program to print 1 to 100 without using loop; Through this tutorial, we will learn how to print 1 to 100 numbers in c program. You can easily print 1 to 100 numbers using recursion function in c program;