CSPrograms4u
Nothing Succeeds Like Success
Home
About
C
Programs
Numbers
Patterns
Conversions
C Practical File
PPTs
CPP
Programs
PPTs
CG
Programs
PPTs
DS
Programs
PPTs
Python
Programs
Java
Programs
PPT
Practical File
C#
Programs
PPTs
VB
Programs
PPTs
VB 2010
Programs
PPTs
Monday, 23 October 2023
C PRO 12 : WAP to find volume of a cube using side as input from user
//Program
# include <stdio.h>
# include <math.h>
int main()
{
float side,vol;
printf("Enter Side of the Cube : ");
scanf("%f",&side);
vol = pow(side,3);
printf("Volume of the Cube is : %.2f",vol);
return 0;
}
**Author**
Sukhvir Singh
Subscribe for Video Lectures
No comments:
Post a Comment
Note: only a member of this blog may post a comment.
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Followers
Total Pageviews
Popular Posts
No comments:
Post a Comment
Note: only a member of this blog may post a comment.