Advertisement
elica123

Untitled

Jun 20th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. #include<string.h>
  4. typedef struct _lijecnik{
  5. char ime[51];
  6. int broj;
  7. }lijecnik;
  8.  
  9. typedef struct _smjena{
  10. char voditelj[51];
  11. lijecnik lijecnici[99];
  12. }smjena;
  13.  
  14. typedef struct _aktivnost{
  15. unsigned tip;
  16. int index_kir;
  17. }aktivnost;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement