Program to swap two strings
Description Swap two strings means first string will be second string and second string will be the first string. C/C++ /* C Program to swap two strings */ //Save it…
Basic program in C/C++ And Java
Description Swap two strings means first string will be second string and second string will be the first string. C/C++ /* C Program to swap two strings */ //Save it…
Description To calculate volume of a Sphere use formula Volume = 4/3 x PI x radius x radius x radius To calculate Surface Area of a Cylinder use formula Surface…
Description To calculate volume of a Cylinder use formula volume = PI x radius x radius x height To calculate Surface Area of a Cylinder use formula Surface area =…
Description To calculate volume of a Cube use formula volume = side x side x side To calculate Surface Area of a Cube use formula Surface Area = 6 x…
Description To calculate area of a Rectangle use formula area = length x breadth C/C++ /* C Program to calculate area of a Rectangle */ //Save it as AreaRectangle.c #include<stdio.h>…
Description To calculate area of a square use formula area = side x side C/C++ /* C Program to calculate area of square */ //Save it as AreaSquare.c #include<stdio.h> int…
Description To calculate area of right angle triangle use formula. Area of Right Angle Triangle = ½ (Base × Perpendicular) C/C++ /* C Program to calculate right angle triangle */…
Description Area of triangle can be calculated using Heron's formula. In geometry, Heron's formula gives the area of a triangle when the length of all three sides are known. The…
Description To calculate area follow the formula of pi*radius*radius. Here assume pi=3.14. C/C++ /* C Prgram to calculate area of circle */ //Save it as AreaCircle.c #include<stdio.h> int main(){ float…
Description To add two complex number, add the real part of first complex number to the real part of the second complex number. Likewise add imaginary part of first complex…