Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
5
Posts with Downvotes
2
Downvoting Members
3
2 Commented Posts
0 Endorsements
~348 People Reached
Favorite Forums
Favorite Tags
c x 2
Member Avatar for justin_17

#include <stdio.h> #include <stdlib.h> int Client_Records(); int outstanding_balances(); int total_company_expenses(); int profit_loss(); void file_guard(); void file_sentinel(); struct records { char client_first_name[30]; char client_last_name[30]; char street_adress[20]; int phone_number; char email_adress[20]; char client_security_package[20]; int annual_package_fee; int payment_made; int annual_vehicle_servicing_expences; int employee_pay; int lot_rental_fees; int utility_bill_payments; int total_expenses; int total_company_earnings; int loss; int …

Member Avatar for Reverend Jim
-3
151
Member Avatar for justin_17

#include <stdio.h> #include <stdlib.h> int Client_Records(); int outstanding_balances(); int total_company_expenses(); int profit_loss(); void file_guard(); void file_sentinel(); struct records { char client_first_name[30]; char client_last_name[30]; char street_adress[20]; int phone_number; char email_adress[20]; char client_security_package[20]; int annual_package_fee; int payment_made; int annual_vehicle_servicing_expences; int employee_pay; int lot_rental_fees; int utility_bill_payments; int total_expenses; int total_company_earnings; int loss; int …

Member Avatar for rubberman
-2
197