Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. #ifndef DEBUG
  4. #define DEBUG(...) printf(__VA_ARGS__)
  5. #endif
  6.  
  7. // Procitati sadrzaj datoteke
  8.  
  9. // Napisati funkciju za sortiranje
  10.  
  11.  
  12. int main() {
  13. int w, h;
  14. int array[256];
  15. int indices[256];
  16.  
  17. scanf("%d %d", &w, &h);
  18.  
  19. // Deklaracija i otvaranje datoteke
  20.  
  21. // Poziv funkcije za ucitavanje podataka
  22.  
  23. // Poziv funkcije za sortiranje
  24.  
  25.  
  26. // Zatvoriti datoteku
  27.  
  28. return 0;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement