-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypedef.c
More file actions
57 lines (46 loc) · 1.32 KB
/
typedef.c
File metadata and controls
57 lines (46 loc) · 1.32 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <math.h>
#include <ctype.h>
#include <stdlib.h>
#include <time.h>
#include <ctype.h>
#include <errno.h>
typedef struct Books {
char title[50];
char author[50];
char subject[100];
int book_id;
} Book;
typedef struct {
char name[25];
char password[12];
int id;
} User;
#define TRUE 1
#define FALSE 0
int main() {
Book book;
strcpy( book.title, "C Programming");
strcpy( book.author, "Nuha Ali");
strcpy( book.subject, "C Programming Tutorial");
book.book_id = 6495407;
printf( "Book title : %s\n", book.title);
printf( "Book author : %s\n", book.author);
printf( "Book subject : %s\n", book.subject);
printf( "Book book_id : %d\n", book.book_id);
User user1 = {"John","password123",123456789};
User user2 = {"Doe","password321",987654321};
printf("%s\n",user1.name);
printf("%s\n",user1.password);
printf("%d\n",user1.id);
printf("\n");
printf("%s\n",user2.name);
printf("%s\n",user2.password);
printf("%d\n",user2.id);
printf( "Value of TRUE : %d\n", TRUE);
printf( "Value of FALSE : %d\n", FALSE);
return 0;
}
// C - typedef. (2012, June 10). Tutorials Point. Retrieved April 16, 2023, from https://www.tutorialspoint.com/cprogramming/c_typedef.htm