Thursday, December 26, 2019

Solar System animation in c++ programming language using openGL api and glut and glew as utility


Solar System animation in C++



code:


Sorting of array in ascending order in 8085 assembly language


Sorting of array in 8085



Description:

Here all the array input is provided through address shown in simulator.



code:


Addition of upper and lower nibble of a 8 bit number in 8085 assembly language

Addition of upper and lower nibble of a 8 bit number 


code:




Addition of two 8 bit number in 8085 microprocessor assembly language


Addition of two 8 bit number


code


How to make Virtual Guitar in C++ programming language

Virtual Guitar

Audio file used in the project can be download through link below along with complete project:

Download here:





code

How to make Maze in 2d using C programming language using concept of Data structure and Algorithm

MAZE Generator




ALGORITHM


  1.  Start
  2. Declaration of all the necessary variable.
  3. Display initial message to user to perform some task.
  4. Depending upon the user input perform task as below:

a)    if userInput == 1 then draw maze.
                                                                             i.          Take length and width of maze from user.
                                                                           ii.          Allocate memory segment for all maze dynamically.
                                                                         iii.          Set boundary  with “#” character.
                                                                         iv.           Link inner node with each other.
                                                                           v.          Check whether destination is wall or not.if not make it blank.
                                                                         vi.          Draw character of each node to generate maze.
b)    else if userInput == 2 then terminate  the program.
c)     else goto step 3.


  1.  Handle  all necessary exception.
  2.   stop.



      CODE