Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
mikolo
/
paaristoo
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
bf8bb279
authored
Feb 13, 2023
by
albrat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update func.c
parent
6873eb04
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
84 additions
and
1 deletions
func.c
functions.c
func.c
deleted
100644 → 0
View file @
6873eb04
functions.c
0 → 100644
View file @
bf8bb279
#include <stdio.h>
#include "header.h"
void
load_autos
(
Auto
*
autos
)
{
FILE
*
fp
=
fopen
(
"autos.txt"
,
"r"
);
if
(
fp
==
NULL
)
{
printf
(
"Error opening autos file
\n
"
);
return
;
}
for
(
int
i
=
0
;
i
<
MAX_AUTOS
;
i
++
)
{
fscanf
(
fp
,
"%s %s %s %d %s"
,
autos
[
i
].
mark
,
autos
[
i
].
model
,
autos
[
i
].
license_plate
,
&
autos
[
i
].
year
,
autos
[
i
].
engine_size
);
}
fclose
(
fp
);
}
void
load_owners
(
Owner
*
owners
)
{
FILE
*
fp
=
fopen
(
"owners.txt"
,
"r"
);
if
(
fp
==
NULL
)
{
printf
(
"Error opening owners file
\n
"
);
return
;
}
for
(
int
i
=
0
;
i
<
MAX_OWNERS
;
i
++
)
{
fscanf
(
fp
,
"%s %s"
,
owners
[
i
].
id
,
owners
[
i
].
name
);
}
fclose
(
fp
);
}
void
find_most_powerful_car
(
Auto
*
autos
)
{
int
max_index
=
0
;
for
(
int
i
=
1
;
i
<
MAX_AUTOS
;
i
++
)
{
if
(
autos
[
i
].
engine_size
>
autos
[
max_index
].
engine_size
)
{
max_index
=
i
;
}
}
printf
(
"Most powerful car: %s %s
\n
"
,
autos
[
max_index
].
mark
,
autos
[
max_index
].
model
);
}
void
find_oldest_car
(
Auto
*
autos
)
{
int
min_index
=
0
;
for
(
int
i
=
1
;
i
<
MAX_AUTOS
;
i
++
)
{
if
(
autos
[
i
].
year
<
autos
[
min_index
].
year
)
{
min_index
=
i
;
}
}
printf
(
"Oldest car: %s %s
\n
"
,
autos
[
min_index
].
mark
,
autos
[
min_index
].
model
);
}
void
find_newest_car
(
Auto
*
autos
)
{
int
max_index
=
0
;
for
(
int
i
=
1
;
i
<
MAX_AUTOS
;
i
++
)
{
if
(
autos
[
i
].
year
>
autos
[
max_index
].
year
)
{
max_index
=
i
;
}
}
printf
(
"Newest car: %s %s
\n
"
,
autos
[
max_index
].
mark
,
autos
[
max_index
].
model
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment