Advertisement
Guest User

Untitled

a guest
Oct 16th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. #ifndef COST_H_INCLUDED
  2. #define COST_H_INCLUDED
  3.  
  4. #include <iostream>
  5. #include <fstream>
  6. #include <iomanip>
  7. #include <string>
  8.  
  9. struct food
  10.     {
  11.         string name;
  12.         int numRemaining;
  13.         string expiration;
  14.         double cost;
  15.     };
  16.  
  17. void sortList(food foodArray[], double cost);
  18.  
  19. #endif // COST_H_INCLUDED
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement