Browsing tag

C examples

C program to separate Odd and Even numbers from an array

C program to separate Odd and Even numbers from an array In this tutorial, we will discuss the C program to separate Odd and Even numbers from an array In this post, we are going to learn how to separate the even and odd numbers from the given array First, we must understand how to…

C program to Electricity bill calculation using function

C program to Electricity bill calculation using function In this tutorial, we will discuss the C program to Electricity bill calculation using the function In this article, we will discuss how to calculate the electricity bill in the C programming language using the function We can calculate monthly electric power usage in many ways in…

C function to check a number is even or odd

C function to check a number is even or odd In this tutorial, we will discuss the C function to check a number is even or odd In this program, we are going to learn about how to find  odd or even number from given number using function in C language First, we must understand…

C program to check whether a number is even or odd

C program to check whether a number is even or odd In this tutorial, we will discuss a simple concept of C program to check whether a number is even or odd In this program, we are going to learn about how to find  odd or even number from given number using if else statements…

C Program to largest and smallest among three numbers

C Program to smallest and largest among three numbers In this tutorial, we discuss C Program to the smallest and largest among three numbers In this program, we will discuss a simple concept of the program to find the smallest and largest among three numbers in the C programming language. In this topic, we learn…

Single dimension Array of C language

Single dimension Array of C language In this tutorial, we will  discuss this in Single dimension Array in C  language An array is a collection of data structures that consist of fixed(cannot change array length) a number of values of the same type such as int, char, float etc… If the data can be viewed…

pow function in C programming Language

pow function in C programming Language In this tutorial, we will discuss pow function in C programming Language Description Pow()  in C is used to find the power of the given number The pow() function in C programming language (C library function) returns x raised to the power of y pow(): In the C Programming…