Guest User

Untitled

a guest
Apr 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. void readFile(const char *filnavn, loebdata loebdatas[]);
  2.  
  3. void hyppigste_ugedag(loebdata alle_loebene[])
  4. {
  5. int i;
  6. for(i = 0; i < MAX_LOEBERE; i++){
  7. // Alle løbere ligger i alle_loebene
  8. }
  9. }
  10.  
  11. int main(void){
  12. loebdata alle_loeb[MAX_LOEBERE];
  13. readFile("runs.txt", alle_loeb);
  14. hastighed(alle_loeb);
  15. }
Add Comment
Please, Sign In to add comment