Skip to content

Create 16_cProgramming.c #141

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Create 16_cProgramming.c
Have begun going through all of Bucky's C tutorials for Uni and figured I will complete the source code for C while I'm studying.
  • Loading branch information
planetareum authored Aug 30, 2019
commit 3076eb048f5877d0dc3d028147b09a62a1316b75
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#include <stdio.h>
#include <stdlib.h>

int main()
{
float avgProfit;
int priceOfPumpkin = 10;
int sales = 59;
int daysWorked = 7;

avgProfit = (float)priceOfPumpkin * (float)sales / (float)daysWorked;
printf ("Average Daily Profit: $%.2f", avgProfit);

return 0;
}