My self upload my program
Naveen Kumar
updated on 04 Aug 2023
Project Details
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Read more Projects by Naveen Kumar (3)
Project 3
#include #include #include using namespace std; enum class FuelType // Define an enumeration for fuel types { GAS, DIESEL, ELECTRIC }; class Vehicle // Define a base class Vehicle { protected: string make; string model; int year; int odometer; public: //…
28 Aug 2023 06:23 PM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
/* * states.h * * Created on: 18-Aug-2023 * Author: Naveen kumar */ #ifndef STATES_H_ #define STATES_H_ #include /* -----Functions----- */ void Init_State_Machine(); void Gear_Down(); void Checking_Before_Takeoff(); void Raising_Gear(); void Gear_Up(); void Checking_Before_Landing(); void Lowering_Gear();…
18 Aug 2023 11:59 AM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List
My self upload my program
04 Aug 2023 04:25 PM IST