Think Different ASD: Tugas Senin 3 Maret 2013

Struct
Implementasikan contoh program berikut:
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

using namespace std;
#include
#include
int main() {
struct book{
char kode[6];
char nama[67];
long int harga;
};
typedef struct book buku;
buku mybook;
coutmybook.kode;
coutmybook.nama;

coutmybook.harga;
cout