This commit is contained in:
Akbar Rahman 2023-10-10 11:24:31 +01:00
parent 4052a7756f
commit 775b4bd643
Signed by: alvierahman90
GPG Key ID: 20609519444A1269
4 changed files with 122 additions and 0 deletions

20
C19/ex1.c Normal file
View File

@ -0,0 +1,20 @@
#include <stdio.h>
struct Person {
int age;
char forename[30];
char surname[50];
};
int main() {
struct Person p;
printf("Enter age: "); scanf("%d", &p.age);
printf("Enter forename: "); scanf("%29s", p.forename);
printf("Enter surname: "); scanf("%49s", p.surname);
printf("p.age=%d p.forename=%s p.surname=%s\n", p.age, p.forename, p.surname);
return 0;
}

25
C19/ex2.c Normal file
View File

@ -0,0 +1,25 @@
#include <stdio.h>
struct Person {
int age;
char forename[30];
char surname[50];
};
void print_person(struct Person p) {
printf("p.age=%d p.forename=%s p.surname=%s\n", p.age, p.forename, p.surname);
}
int main() {
struct Person p;
printf("Enter age: "); scanf("%d", &p.age);
printf("Enter forename: "); scanf("%29s", p.forename);
printf("Enter surname: "); scanf("%49s", p.surname);
print_person(p);
return 0;
}

27
C19/ex3.c Normal file
View File

@ -0,0 +1,27 @@
#include <stdio.h>
struct Person {
int age;
int year_of_birth;
char forename[30];
char surname[50];
};
void print_person(struct Person p) {
printf("p.age=%d p.year_of_birth=%d p.forename=%s p.surname=%s\n", p.age, p.year_of_birth, p.forename, p.surname);
}
int main() {
struct Person p;
printf("Enter age: "); scanf("%d", &p.age);
printf("Enter birth year: "); scanf("%d", &p.year_of_birth);
printf("Enter forename: "); scanf("%29s", p.forename);
printf("Enter surname: "); scanf("%49s", p.surname);
print_person(p);
return 0;
}

50
C19/ex4.c Normal file
View File

@ -0,0 +1,50 @@
#include <stdio.h>
struct Person {
int age;
int year_of_birth;
char forename[30];
char surname[50];
};
void print_person(struct Person p) {
printf("p.age=%d p.year_of_birth=%d p.forename=%s p.surname=%s\n", p.age, p.year_of_birth, p.forename, p.surname);
}
int main() {
struct Person p;
FILE *fp;
char choice;
char filename[4097];
printf("Read or write a file? (r/w) "); scanf("%c", &choice);
if (choice == 'w') {
printf("Enter age: "); scanf("%d", &p.age);
printf("Enter birth year: "); scanf("%d", &p.year_of_birth);
printf("Enter forename: "); scanf("%29s", p.forename);
printf("Enter surname: "); scanf("%49s", p.surname);
printf("Enter filename to save to: "); scanf("%4096s", filename);
fp = fopen(filename, "wb");
if (fp == NULL) {
printf("Failed to open file for writing\n");
return 1;
}
fwrite(&p, 1, sizeof(p), fp);
} else {
printf("Enter file to read from: "); scanf("%4096s", filename);
fp = fopen(filename, "rb");
if (fp == NULL) {
printf("Failed to open file for reading\n");
return 1;
}
fread(&p, 1, sizeof(p), fp);
}
print_person(p);
return 0;
}