wisdomatrix.com

C Program to Division Between Two Numbers

In C programming, division is an arithmetic operation that involves dividing one number by another. The division operator in C program is represented by the forward slash (“/”). The basic syntax for division in C is: Interger Numbers : #include<stdio.h>#include<conio.h>main(){int a,b,c;printf(“Enter first Number = “);scanf(“%d”,&a);printf(“Enter Second Number = “);scanf(“%d”,&b);c=a/b;printf(“Division of two numbers is = %d”,c);} Output : Float Numbers : #include<stdio.h>#include<conio.h>main(){float a,b,c;printf(“Enter first Number = “);scanf(“%f”,&a);printf(“Enter Second Number = “);scanf(“%f”,&b);c=a/b;printf(“Division of two numbers is = %f”,c);} Output :

C Program to Division Between Two Numbers Read More »

C Program to Multiplication of Two Numbers

In a C program, multiplication is an arithmetic operation that involves multiplying two or more values to obtain their product. The multiplication operator in C is the asterisk symbol (*). Here’s a basic example: Interger Numbers : #include<stdio.h>#include<conio.h>main(){int a,b,c;printf(“Enter first Number = “);scanf(“%d”,&a);printf(“Enter Second Number = “);scanf(“%d”,&b);c=a*b;printf(“Multiplication of two numbers is = %d”,c);} Output : Float Numbers : #include<stdio.h>#include<conio.h>main(){float a,b,c;printf(“Enter first Number = “);scanf(“%f”,&a);printf(“Enter Second Number = “);scanf(“%f”,&b);c=a*b;printf(“Multiplication of two numbers is = %f”,c);} Output :

C Program to Multiplication of Two Numbers Read More »

C Program to Subtraction of Two Numbers

C Program to Subtraction of Two Numbers Subtraction in a C program is performed using the subtraction operator (-). The subtraction operator subtracts the value on the right-hand side of the operator from the value on the left-hand side. Here’s a simple example: Interger Numbers : #include<stdio.h>#include<conio.h>main(){int a,b,c;printf(“Enter first Number = “);scanf(“%d”,&a);printf(“Enter Second Number = “);scanf(“%d”,&b);c=a-b;printf(“Subtraction of two numbers is = %d”,c);} Output : Float Numbers : #include<stdio.h>#include<conio.h>main(){float a,b,c;printf(“Enter first Number = “);scanf(“%f”,&a);printf(“Enter Second Number = “);scanf(“%f”,&b);c=a-b;printf(“Subtraction of two numbers is = %0.2f”,c);} Output :

C Program to Subtraction of Two Numbers Read More »

C Program to Additon of Two Numbers

C Program to Additon of Two Numbers In the C program, addition is a basic arithmetic operation performed using the ‘+‘ operator. The ‘+‘ operator adds two numeric values together. Here’s a simple example: Interger Numbers : #include<stdio.h>#include<conio.h>main(){int a,b,c;printf(“Enter first Number = “);scanf(“%d”,&a);printf(“Enter Second Number = “);scanf(“%d”,&b);c=a+b;printf(“Sum of two numbers is = %d”,c);} Output : Float Numbers : #include<stdio.h>#include<conio.h>main(){float a,b,c;printf(“Enter first Number = “);scanf(“%f”,&a);printf(“Enter Second Number = “);scanf(“%f”,&b);c=a+b;printf(“Sum of two numbers is = %0.2f”,c);} Output :

C Program to Additon of Two Numbers Read More »

Shopping Basket
Select the fields to be shown. Others will be hidden. Drag and drop to rearrange the order.
  • Image
  • SKU
  • Rating
  • Price
  • Stock
  • Availability
  • Add to cart
  • Description
  • Content
  • Weight
  • Dimensions
  • Additional information
Click outside to hide the comparison bar
Compare
Verified by MonsterInsights