Browsing tag

C examples

Example to subtract two integer using pointer in C

Example to subtract two integer using pointer in C In this article, we will discuss the concept of the Example to subtract two integer using pointer in C programming language In this post, we are going to learn how to  write a program to find the subtraction of two numbers using pointer in C programming language…

C Example to subtract two integer without using minus operator

C Example to subtract two integer without using minus operator In this article, we will discuss the concept of the C Example to subtract two integer without using minus operator In this post, we are going to learn how to  write a program to calculate the subtraction of two numbers with out using minus operator in…

Multiplication program of two floating-point numbers using function in C

Multiplication program of two floating-point numbers using function in C In this tutorial, we will discuss the concept of Multiplication program of two floating-point numbers using function in C In this topic, we are going to learn how to multiply two floating-point numbers using the function in C language What is multiplication The multiplication is…

Multiplication of two floating point numbers in C

Multiplication of two floating point numbers in C In this tutorial, we will discuss the concept of Multiplication of two floating point numbers in C In this topic, we are going to learn how to multiply two floating-point numbers using the multiplication operator in C language What is multiplication The multiplication is a method of…

C exercise to Divide of two integer numbers

C exercise to Divide of two integer numbers In this tutorial, we will discuss the concept of C exercise to Divide of two integer numbers In this topic, we are going to learn how to divide two numbers using the division operator in C language   What is division The division is a method of…

Use of C program to subtraction of two numbers using recursion

Use of C program to subtraction of two numbers using recursion In this tutorial, we will discuss the Use of C program to subtraction of two numbers using the recursion In this topic, we are going to learn how to subtract two numbers (integer )using the recusive function in C language already we are learned…

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 find Subtraction of two numbers

C Program to find Subtraction of two numbers In this article, we will discuss the concept of the C program to find  Subtraction of two numbers In this post, we are going to learn how to  write a program find the subtraction of two numbers in C programming language Code to find the subtraction of …

C program: Find the frequency of each character in the string

C program: Find the frequency of each character in the string In this article, we will discuss the concept of the C program: Find the frequency of each character in the given  string In this post, we are going to learn how to  find the frequency of  the each character of the given string in C…

Count Number of space of the given string in C language

Count Number of space of the given string in C language In this article, we will discuss the concept of the Count Number of space of the given string in C language In this post, we are going to learn how to  count the number of spaces in  the given string in C programming language When…