Calculate for a value X data of type float the numerical value of a polynomial of degree N C Code:...
Category - C
C Program to Print Prime Numbers from 1 to N
In this example, you will learn How to Display Prime Numbers in C A prime number is any number that...
Convert a binary number to a decimal in C
In this example, you will learn how to convert a binary number to a decimal using C language C...
C Program to Check whether a Number is Even or Odd using Function
In this example I wrote a program to check whether the given number is even or odd using revursive...
Check if a number is even or odd in C
To study the parity of a number it is enough to check whether or not it is a multiple of the number...
C Program to Find the Frequency of a String in a File
In this program will shown you how to find the frequency of characters in a string using C language...
Find the position of the minimum Number in an Array in C
This program looks for the minimum of a table and its position. #include<stdio.h>...
Find the Maximum Element of an Array and Its position in C
This program searches for the position of the maximum value in a C language. #include<stdio...
Delete a Value in a C Array
This program searches for and deletes an entered value, it has two steps: Browse the list until the...
Calculate the Average of an Array of Integers in C
To find the average of a table, it is necessary to traverse all the cells of table of length n...
Program to Find GCD of Two Numbers Using Recursion in C
The GCD (Greatest Common Divisor), also called HCF (Highest Common Factor) , can be computed in C...
Calculate Square Root Without Using function in C
C Code: The following code shows how to get the square root without using the function in C...