1. Write a Program to Take input from user Print Square and cube c program .

2. write a Program To take input from user print Simple interest c program .

3. Write a Program to Take input from user Print Circumference C Program .

1.
Write a Program to Take input from user Print Square and cube c program - Program code. 

// Write a program to take input from user print squaer and cube.

#include<stdio.h>
#include<conio.h>
int main()
{
int n,squaer,cube;
clrscr();
printf("Enter the value of n :");
scanf("%d",&n);
squaer = n*n;
cube = n*n*n;
printf("Squaer is %d\n",squaer);
printf("Cube is %d",cube);
getch();
return 0;
}

PROGRAM :-
Program of square and cube

OUTPUT :-
Program of square and cube Output

Program of square and cube - Output

Download Program source code 
Download To click here...

2.
write a Program To take input from user print Simple interest c program - Program Code. 

// Write a program to take input form user and print simple interest.
#include<stdio.h>
#include<conio.h>
int main()
{
float interest,p,r,n;
clrscr();
printf("Enter the value of p:");
scanf("%f",&p);
printf("Enter the value of r:");
scanf("%f",&r);
printf("Enter the value of n:");
scanf("%f",&n);
interest=(p*r*n)/100;
printf("Simple interest is %f",interest);
getch();
return 0;
} 

 PROGRAM :-

Program Simple interest


OUTPUT :-
Program Simple interest output


Program Simple interest output

Download Program source code
Download To click here...

3.
Write a Program to Take input from user Print Circumference c program - Program Code

//Write a program to take input from user print Circumference

#include<stdio.h>
#include<conio.h>
#define pi 3.14
int main()
{
float radius,c;
clrscr();
printf("Enter the value of Radius :");
scanf("%f",&radius);
c= 2 * pi * radius;
printf("Circumference is %f",c);
getch();
return 0;
}

PROGRAM :-
Program of Circumference

OUTPUT :-
Program of Circumference output

Program of Circumference output

Download Program source code
Download To click here...