
Hardworking student, focused on further developing coding skills by learning from internships and completing projects. Extremely eager to learn, connect, and take part in opportunities to enhance coding abilities and contribute to company growth.
Sports performance & training company
Proficient:
Intermediate:
Anime Club: A C program that manages a list of different anime. For each anime you store the name (String) and points(int) given by users. You can have no more than 100 anime in the list.
void CreateGroup(tGroup *g): Creates a group with an empty list of anime.
void AddAnime(tAnime a, tGroup *g) ) Adds a new anime to the list of anime in the group.
int SearchAnimeByName(String name, tGroup g): returns the index in the list where one anime is searched by name or -1 if not found.
RemoveAnimeByName(String name, tGroup *g) : removes the one anime from the list of anime in the group searching by name.
void PrintAnime(tAnime a): Prints one anime into the screen.
void ReadAnime(tAnime *a): Reads one anime from the keyboard. o void PrintGroup(tGroup g): Prints all anime in the list of anime’s in the group.
bool ReadAnimeFromTextFile(tAnime *a, FILE *fp): Reads one anime from fp.
void WriteAnimeToTextFile(tAnime a, FILE *fp): Print one anime onto the screen.
void LoadGroupFromTextFile(tGroup *g, String fileName): Loads and adds anime in the text file filename into the list of anime in the group. void SaveGroupToTextFile(tGroup g, String fileName): Saves every anime in the list of anime’s of the group into the text file named fileName.
Airline Company Application: Program that works on IT tasks for an Airline Company. This python program stores details about an airline’s fleet, flights, and seat bookings.