forked from ASD-ADF/ASD_Task_2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorang.h
More file actions
27 lines (20 loc) · 641 Bytes
/
Copy pathorang.h
File metadata and controls
27 lines (20 loc) · 641 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
KELAS :IF 39-06
KELOMPOK :1
NAMA(NIM) : [Vatana RA][1301154566] , [Ibrahim Bimo][1301154356] , [M. Iqbal][1301154300] , [Rian P][1301154426]
**/
#ifndef ORANG_H_INCLUDED
#define ORANG_H_INCLUDED
#include "tanggal.h"
struct orang {
//=================================================
// YOUR CODE STARTS HERE
string nama ;
tanggal tgl_lahir;
// YOUR CODE ENDS HERE
//=================================================
};
orang create_orang(string nama, int tgl,int bln,int thn);
int hitung_umur(orang org);
void show_orang(orang org);
#endif // ORANG_H_INCLUDED