Browsing tag

User defined function

C++ program to subtract two number using Function

C++ program to subtract two number using Function In this tutorial, we will discuss the C++ program to subtract two numbers using the function In this topic, we are going to learn how to subtract two numbers (integer, floating point) using the function in C++ language already we are learned the same concept using the…

C program to subtract two number using Function

C program to subtract two number using Function In this tutorial, we will discuss the C program to subtract two numbers using the function In this topic, we are going to  learn how to subtract two numbers (integer, floating point) using the function in C language already we are learned the same concept using the…

Function in Python programming language

Function in Python programming language In this tutorial, we will discuss the function in Python programming language. Functions of Python are a collection of related and reusable statements under a single unit. They are used to perform a specific task and only run when they are called – similar to a method in Java Basically,…

function in C programming language with example

Functions in C programming language with example In the tutorial, we will discuss function in C programming language with examples. The function is the building block of programming in C language. function in C programming language Description Description of function in C programming language What is a function? The function is a block of statement…