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

A2Z Infos

All Information to All

Menu
  • Home
  • Programs
    • C
    • C++
  • Technology
    • Script
  • About
  • Contact
  • Uncategorized
×
Breaking News:
  • Binary Search in C
  • Linear Search in C
  • Generate the Series
  • Some helpful commands used in command prompt
  • FIFO in C++

Author: admin

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

Some helpful commands used in command prompt

Script Technology 
November 29, 2020November 30, 2020
Posted By: admin 0 Comment cmd, command script, technology

In Windows operating systems, the Command Prompt is a program that is used to execute entered commands and perform advanced administrative functions. Some helpful

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

Posts navigation

Older posts

Recent Posts

  • Binary Search in C
  • Linear Search in C
  • Generate the Series
  • Some helpful commands used in command prompt
  • FIFO in C++

Popular Posts

Binary Search in C

Binary Search in C

November 30, 2020 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.