Menu

Executive Programs

Workshops

Projects

Blogs

Careers

Student Reviews



More

Academic Training

Informative Articles

Find Jobs

We are Hiring!


All Courses

Choose a category

Loading...

All Courses

All Courses

logo

Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory)

project(offline) #include <stdio.h>#include <stdlib.h> // A structure of linked list nodestruct node { int data; struct node *next; } *LL1, *LL2, *unionLL, *intersectionLL; void initialize() { LL1 = LL2 = NULL;//keeping every linked list as null intially}//Given a Inserts a node in front of a singly linked…

    Project Details

    Loading...

    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.

    Please  login to add a comment

    Other comments...

    No comments yet!
    Be the first to add a comment

    Read more Projects by SRIDHAR U (8)

    Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)

    Objective:

    Project 2)offline #include <avr/io.h> #include <avr/interrupt.h> #define F_CPU 8000000 #include <util/delay.h> #include <string.h> #include <stdlib.h>   #define LCD_data_dir DDRD                         //LCD data port direction…

    calendar

    21 Sep 2022 11:06 AM IST

      Read more

      Project 1 - Controlling a DC motor using PWM and monitoring its Running status

      Objective:

      PROJECT) #include <avr/io.h> //preprocessor directive#define F_CPU 16000000ul#include "avr/interrupt.h"//Preprocessor directive of an avr interrupt#include <util/delay.h>#define sw_dir (PIND&(1<<1))#define sw_spd (PIND&(1<<2))#define pw (PINC&(1<<3))#define lcd_port PORTB#define…

      calendar

      19 Sep 2022 12:51 PM IST

        Read more

        Project 1 - V&V SW Analysis - I

        Objective:

        if(owner long press the power button) {       open the company logo at centre; } else if(customer press the power button) {       open the apps in grid; } else if(owner power on the phone) {       shows call the phone icon on first position at bottom; } else if(owner power on…

        calendar

        06 Sep 2022 12:08 PM IST

          Read more

          Project 2 - V&V SW Analysis II

          Objective:

          offline

          calendar

          05 Sep 2022 11:28 PM IST

            Read more

            Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter

            Objective:

            1)offline float microsecToinchs( float d);float avg;int i,sum;int duration,inches;float Duration_inch;int data[5]; void setup(){ Serial.begin(9600); pinMode(6, INPUT);} void loop(){ float average = mov_avg(); Serial.println("distance value is"); Serial.println( inches); delay(1000);} void US_Tx(){ pinMode(6,OUTPUT); //delayMicroseconds(5);…

            calendar

            18 Aug 2022 06:13 AM IST

              Read more

              Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol

              Objective:

              // C++ code//slave#include<LiquidCrystal.h>#include<Wire.h>LiquidCrystal lcd(12,11,5,4,3,2);void setup()//void setup(){ //Serial.begin(9600); Wire.begin(8);// LiquidCrystal lcd(rs,enable,lcd,d5,d6,d7); // LiquidCrystal lcd(12,11,5,4,3,2); lcd.begin(16,2); Wire.onReceive(display);} void loop(){delay(30);}void…

              calendar

              17 Aug 2022 12:14 PM IST

                Read more

                Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear

                Objective:

                project#2(offline) #include <stdio.h>#include<string.h>typedef enum { gear_down, checking_before_take_off, rising_gear, gear_up, checking_before_landing, lowering_gear //checking_before_landing, //raising_gear //checking_before_take_off, //checking_before_landing}state_type;//naming the enumtypedef enum { close,…

                calendar

                04 Aug 2022 07:04 AM IST

                  Read more

                  Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory)

                  Objective:

                  project(offline) #include <stdio.h>#include <stdlib.h> // A structure of linked list nodestruct node { int data; struct node *next; } *LL1, *LL2, *unionLL, *intersectionLL; void initialize() { LL1 = LL2 = NULL;//keeping every linked list as null intially}//Given a Inserts a node in front of a singly linked…

                  calendar

                  30 Jul 2022 09:17 AM IST

                    Read more
                    Showing 1 of 8 projects