#include <stdbool.h>#include <stdio.h>#include <stdlib.h>// Link list nodestruct Node { int data; struct Node* next;};//function declarationvoid push(struct Node** head_ref, int new_data);int isPresent(struct Node* head, int data);// Function to get union of two linked lists head1 and head2struct Node*…
Sudarshan Ekhande
updated on 19 Dec 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 Sudarshan Ekhande (12)
Project 2 - V&V SW Analysis II
Perform Static Code Review Analysis for “C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c” Generate Code review report and upload them. Ans- step 1: start LDRA TBrun. step 2: From the LDRA page select source->single file->LDRA_workarea->examples->C_Testbed_examples->Testrain->Testrain.c->open.(in…
15 Apr 2024 06:08 AM IST
Project 1 - V&V SW Analysis - I
Write a Test plan to test features of a new mobile phone (Blackbox test) that needs to be implemented based on the following requirements. (The product is still under development stage and is yet to be UA (User Acceptance ) tested .Every other thing to be included in the test plan can be hypothetical. US-1:As a Product…
19 Feb 2024 04:33 PM IST
Project 3
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 oil filter, replace…
13 Feb 2024 10:11 AM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
Aim: To implement code for “Measuring distance of an object using ultrasonic distance sensor (HC-SR04). Objective: Measuring the distance of an object using Ultrasonic Distance Sensor (HC-SR04) Usage of Input Capture Mode Highlights: Measuring the distance travelled by the wave to the object and gets bounced back…
18 Dec 2023 07:08 AM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
Project 1 - Controlling a DC motor using PWM and monitoring its Running status. ans- Configuring Timer0 for PWM generation It is simple to configure PWM mode in Timer. We just need to set some bits in the TCCR0 register. TCCR0: Timer Counter Control Register 0 Bit 7- FOC0: Force compare match Write only bit,…
12 Jul 2023 11:27 AM 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. Ans- Overview of the Project: In this project the implementation of code for “Measuring distance of an object using ultrasonic distance sensor (28015 Ping) and also smoothen the…
11 Jul 2023 11:47 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol. Ans- Below image of two arduino connect. one is work as a master and second is slave. Arduino(Master) connect potentiomenter(Analog Input) connected to analog A1 pin. and 16x2 LCD conncected to arduino 2(slave). Arduino1(master) sends pot value…
11 Jul 2023 08:55 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol. Ans- Below image of two arduino connect. one is work as a master and second is slave. Arduino(Master) connect potentiomenter(Analog Input) connected to analog A1 pin. and 16x2 LCD conncected to arduino 2(slave). Arduino1(master) sends pot value…
06 Feb 2023 06:01 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<stdbool.h>#include<stdlib.h> //use standards libraries// Link list node //create structure for nodestruct Node { int data; //data in int form struct…
06 Feb 2023 05:45 PM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol. Ans- Below image of two arduino connect. one is work as a master and second is slave. Arduino(Master) connect potentiomenter(Analog Input) connected to analog A1 pin. and 16x2 LCD conncected to arduino 2(slave). Arduino1(master) sends pot value…
23 Jan 2023 03:14 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear. Answer:-r. Landing Gear of an Airplane:- It is the undercarriage of an airplane, which is used for either take off or landing. It was also formerly called alighting gear by some manufacturers, such as the Glenn…
15 Jan 2023 07:12 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
#include <stdbool.h>#include <stdio.h>#include <stdlib.h>// Link list nodestruct Node { int data; struct Node* next;};//function declarationvoid push(struct Node** head_ref, int new_data);int isPresent(struct Node* head, int data);// Function to get union of two linked lists head1 and head2struct Node*…
19 Dec 2022 04:33 PM IST