Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Area and Volume coding
//gcc 5.4.0 #include <stdio.h> #include <math.h> int main(void) { double pi=3.14; double R=10; double V; double a; a=powf(R,2)*pi; printf("The area is %f\n", a); R=powf(R,3); V=(4.0/3.0)*pi*R; printf("The volume is %f\n", V); return 0; }
run
|
edit
|
history
|
help
0
Nearly working
If then price calculation v1
C_141113_VariosPerfectos
If Statements/Increments V1
part2final
Lab 7 blackjack v0.5
date diff sample
Program 1 - 2D array and memory pointers
sorted array
Nitheesh