#include <stdio.h> #include <stdlib.h> /* A structure of linked list node */ struct node { int data; struct node *next; } *LLOne, *LLTwo, *unionLL, *intersectionLL; void initialize(){ LLOne = LLTwo = NULL; } /* Given a Inserts a node in front of a singly linked list. */ void insert(struct node **head, int num)…
Muthukumar P
updated on 27 Nov 2022
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 Muthukumar P (10)
Project 3
live batch (preeti) Build an object-oriented library which can be used to track automobile maintenance. There can be different car types such as petrol, diesel, gas, electric etc., This library should be able to support at least three of the car types. Maintenance tasks include activities like oil change or replace…
16 May 2023 04:14 PM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter circuit :- code:- // C++ code//#include <LiquidCrystal.h> LiquidCrystal lcd(12 ,11 ,5 ,4 ,3 ,2); //Define LCD Module Pins (RS,RN,D4,D5,D6,D7)int window[10] = {0}; // Creating a integer…
16 Mar 2023 04:01 PM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
Measuring distance of an object using ultrasonic distance sensor (HC-SR04) Goals: Measuring the distance of an object using Ultrasonic Distance Sensor (HC-SR04) Usage of Input Capture Mode Key Highlights of the Project: Measuring the distance travelled by the wave to the object and gets bounced back from the object…
14 Mar 2023 04:06 PM IST
Project 1 - V&V SW Analysis - I
live batch(preeti) Write a Test plan to test the features of a new mobile phone. Black box testing: Black box testing is a technique of software testing which examines the functionality of the software without peering into its internal structure or coding. The primary source of black-box testing is a specification…
14 Mar 2023 03:17 PM IST
Project 2 - V&V SW Analysis II
live batch(preeti) Perform Static Code Review Analysis for “C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c” Generate Code review report and upload them. Perform Integration testing by including all the .C files available in the folder location C:\**\LDRA_workarea\Examples\Toolsuite\Cashregister_6.0\…
10 Mar 2023 02:35 PM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
Controlling a DC motor using PWM and monitoring its Running status
28 Feb 2023 02:51 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
#include void Initiate_State_Machine();void GearDown();void CheckingBeforeTakeOFF();void RaisingGear();void GearUp();void CheckBeforeLanding();void LoweringGear();static void(*statetable[])(void)={GearDown, CheckingBeforeTakeOFF, RaisingGear, GearUp, CheckBeforeLanding, LoweringGear};typedef enum State{GEAR_DOWN,CHECKING_BEFORE_TAKEOFF,RAISING_GEAR,GEAR_UP,CHECK_BEFORE_LANDING,LOWERING_GEAR,}State_Type;typedef…
31 Jan 2023 07:05 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
#include void Initiate_State_Machine();void GearDown();void CheckingBeforeTakeOFF();void RaisingGear();void GearUp();void CheckBeforeLanding();void LoweringGear();static void(*statetable[])(void)={GearDown, CheckingBeforeTakeOFF, RaisingGear, GearUp, CheckBeforeLanding, LoweringGear};typedef enum State{GEAR_DOWN,CHECKING_BEFORE_TAKEOFF,RAISING_GEAR,GEAR_UP,CHECK_BEFORE_LANDING,LOWERING_GEAR,}State_Type;typedef…
30 Jan 2023 05:19 PM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
CODE: #include //Library for I2C communication functions#include //Library for LCD functionsLiquidCrystal lcd(2,7,8,9,10,11); //define lcd module pins(rs,en,D4,D5,D6,D7)byte SlaveReceived = 0;void setup(){ lcd.begin(16,2); //initializes LCD display lcd.setCursor(0,0); //sets cursor at first line of lcd lcd.print("Skill…
23 Jan 2023 03:32 PM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List
#include <stdio.h> #include <stdlib.h> /* A structure of linked list node */ struct node { int data; struct node *next; } *LLOne, *LLTwo, *unionLL, *intersectionLL; void initialize(){ LLOne = LLTwo = NULL; } /* Given a Inserts a node in front of a singly linked list. */ void insert(struct node **head, int num)…
27 Nov 2022 09:59 AM IST