- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
8086 program to find the min value in a given array
In this program we will see how to find the minimum number in a given array.
Problem Statement
Write 8086 Assembly language program to find the minimum number in a given array, which is starts from memory offset 501. The size of the series is stored at memory offset 500. Store the minimum number at memory offset 600.
Discussion
At first we are taking the size of the array from memory offset 500. Then using that size, we are initializing the counter to read and check all the numbers. We are taking the first number into AL, then check each number and compare it with AL. If the AL is larger than the array element, then update AL with the array element. Otherwise skip that element and point to next element. Thus the minimum element is found.
Input
Address | Data |
---|---|
… | … |
500 | 06 |
501 | 51 |
502 | 24 |
503 | 2C |
504 | CF |
505 | 3E |
506 | 45 |
… | … |
Flow Diagram
Program
Output
Address | Data |
---|---|
… | … |
600 | 24 |
… | … |
- Related Articles
- 8086 program to find sum of Even numbers in a given series
- 8086 program to find sum of odd numbers in a given series
- 8086 program to find the factorial of a number
- Find a Fixed Point (Value equal to index) in a given array in C++ Program
- Program to find maximum value at a given index in a bounded array in Python
- Program to find value for which given array expression is maximized in Python
- 8086 program to sort an integer array in ascending order
- 8086 program to sort an integer array in descending order
- How to find Min/Max numbers in a java array?
- 8086 program to find Square Root of a number
- Java Program to generate random number array within a range and get min and max value
- Program to find out the value of a given equation in Python
- Program to find common fraction between min and max using given constraint in Python
- Golang Program to find the odd-occurring elements in a given array
- 8086 program to find average of n numbers

Advertisements