Telaryon

Egyszerű Nyilvántartószoftver példa V. rész

Mar 18th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.36 KB | None | 0 0
  1. /*
  2. File name: structure.h
  3. Ez az a header fájl, amelyben a program struktúrája található. */
  4.  
  5. typedef struct videogames{
  6.     char name[40];
  7.     char category[10];
  8.     int releasedate;
  9.     char payingmethod[15];
  10.     char developer[20];
  11.     char diskspacerequirement[5];
  12.     int price;
  13.     char availability[10];
  14.     char warehouse[15];
  15. }Videogames;
Advertisement
Add Comment
Please, Sign In to add comment