Browsing tag

C language

C program:find smallest of three numbers using function

C program:find smallest of three numbers using function In this tutorial, we will discuss the concept of the C program:find smallest of three numbers using function  In this post, we will learn how to find the smallest number among three numbers using a user-defined function in the C programming language   In my previous post,…

C program:find greatest of three numbers using function

C program: find greatest of three numbers using the function In this tutorial, we will discuss a concept of  C program: find greatest of three numbers using the function In this post, we will learn how to find the greatest number  of three numbers using a user-defined function in the C programming language In my…

Display even and odd numbers without if statement in C

Display even and odd numbers without if statement in C In this tutorial, we will discuss the concept of Display even and odd numbers without if statement in C language In this post, we are going to learn how to display even and odd numbers without if statement in C language.   First, we must…

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…