Skip to content
  • Home
  • GST(India)
Friday, January 22, 2021
  • Facebook
  • Twitter
  • Instagram
  • Email
A2Zinfos

A2Z Infos

All Information to All

Menu
  • Home
  • Programs
    • C
    • C++
  • Technology
    • Script
    • Websites
  • GST
  • About
  • Contact
×
Breaking News:
  • Quarterly Return Filing and Monthly Payment of Taxes (QRMP) Scheme under GST
  • Transfer or Upload the WordPress site to Live Server
  • Binary Search in C
  • Linear Search in C
  • Generate the Series

Programs

Binary Search in C

C Programs 
November 30, 2020
Posted By: admin 0 Comment binary chop, binary search, C program, half interval search

Binary Search is a search algorithm that finds the position of a target element within a sorted list. Binary search compares the target element

Read more

Linear Search in C

C Programs 
November 30, 2020
Posted By: admin 0 Comment C program, linear search, sequential search

A Linear search or sequential search is a method for finding an element within a list sequentially. It checks each element in the list

Read more

Generate the Series

C Programs 
November 30, 2020November 30, 2020
Posted By: admin 0 Comment C program, generate series, series in C

Below coding is the program to generate n number of series. For example: (1*1)+(2*2)+(3*3)+……+(n*n) //GENERATING THE SERIES #include<stdio.h> #include<conio.h> void main() { int n,i,sum=1;

Read more

FIFO in C++

C++ Programs 
November 28, 2020
Posted By: admin 0 Comment FIFO, First In First Out, Job Allocation, OS

First In First Out(FIFO) is known as first come first served. It is also known as FCFS is the simplest scheduling algorithm. Below coding

Read more

Prime Numbers in C

C Programs 
November 28, 2020
Posted By: admin 0 Comment C Programs, Prime numbers

A prime number is a natural number that is not a product of two smaller natural numbers. The natural number 1 is not a

Read more

Fibonacci Series in C

C Programs 
November 28, 2020
Posted By: admin 0 Comment C Programs, Fibonacci, Fibonaci, Fibonaci Series

The Fibonacci series is the numbers in the following integer sequence. 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144,

Read more

Factorial in C

C Programs 
November 26, 2020
Posted By: admin 0 Comment C Programs, fact, factorial, recursive function

A factorial is a function that multiplies a whole number by every number below it. For example: 6! = 6 x 5 x 4

Read more

Reverse a string in ASM

ASM Programs 
November 26, 2020November 26, 2020
Posted By: admin 0 Comment ASM, Assembly Language, reverse, string

Below code is the program to reverse a string in assembly language. ;REVERSE STRING NAME “REVERSE” ORG 100H JMP START STRING1 DB ‘EGAUGNAL YLBMESSA’

Read more

Display “Hello World” in ASM

ASM Programs 
November 26, 2020November 26, 2020
Posted By: admin 0 Comment ASM, Assembly Language, Hello World

Below program is the code for displaying the message “Hello World!”. name “hi” org 100h jmp start msg: db “Hello, World!”,0dh,0ah,24h start: mov dx,

Read more

Addtion & Subtraction in ASM

ASM Programs 
November 25, 2020
Posted By: admin 0 Comment Addition, ASM, Assembly Language, registers, Subtraction

Below coding is the example of addition and subtraction in assembly language. name “add-sub” org 100h mov al,5 mov bl,10 add bl,al sub bl,1

Read more

Posts navigation

Older posts

Recent Posts

  • Quarterly Return Filing and Monthly Payment of Taxes (QRMP) Scheme under GST
  • Transfer or Upload the WordPress site to Live Server
  • Binary Search in C
  • Linear Search in C
  • Generate the Series

Popular Posts

Quarterly Return Filing and Monthly Payment of Taxes (QRMP) Scheme under GST

Quarterly Return Filing and Monthly Payment of Taxes (QRMP) Scheme under GST

January 20, 2021 admin 0
Arithmetic Operations in C

Arithmetic Operations in C

November 24, 2020 admin 0
Division in C

Division in C

November 25, 2020 admin 0
Multiplication in C

Multiplication in C

November 25, 2020 admin 0

About This Site

This site contains most of the information. This site is useful to gathering information.

About Us

Copyright © 2021 A2Z Infos. Theme: ColorNews by ThemeGrill. Powered by WordPress.