Guest User

Untitled

a guest
Jan 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.46 KB | None | 0 0
  1. void printData(){
  2.     //FOR DEBUGGING ONLY
  3.     //DELETE AFTER
  4.  
  5.     int i, j;
  6.  
  7.     printf("\n");
  8.     printf("%7s ", "");
  9.     for(i = 0; i < numberOfMovies; i++){
  10.         printf("%.5s ", movies[i]);
  11.     }
  12.     printf("\n");
  13.     for(i = 0; i < numberOfPeople; i++){
  14.         printf("%7s ", people[i]);
  15.         for(j = 0; j < numberOfMovies; j++){
  16.             printf("%5d ", ratings[i][j]);
  17.         }
  18.         printf("\n");
  19.     }
  20.  
  21.     printf("\n");
  22. }
Add Comment
Please, Sign In to add comment