Friday, October 30, 2020

Hello World

 Hello World!!

Dear Readers,

Today I would share simple hello world programs from popular computer languages, like Python, C ,

Java, C++ . This blog is meant to express the simplicity and strength of Python programming language

1. Python 

# Hello world in Python 
print 'hello world!'

2. C

/* hello world in c */
#include <stdio.h>

int main() {
  printf("Goodbye, World!");
  return 0;
}

3. Java

// Hello World in Java
public class Main {
    public static void main(String[] args){
        System.out.println("Hello World!");
    }
}

4. C++

// Hello world in C++
#include<iostream>
using namespace std;

int main(){
cout<<"Hello World!"<< std::endl;
return 0;
}

Linear Search algorithm

Linear Search Algorithm Dear Readers, In this Blog today I would Share about Linear Search Algorithm a must know for everyone whether you wa...