Neeraj Mishra

A crazy computer and programming lover. He spend most of his time in programming, blogging and helping other programming geeks.

Linear Search in C++

Here you will get program for linear search in C++. In linear search algorithm, we compare targeted element with each element of the array. If the element is found then its position is displayed. The worst case time complexity for linear search is O(n). Program for Linear Search in C++   Output How many elements?4 Enter …

Linear Search in C++ Read More »

C++ Program to Create Facebook Login Screen

Actually this program doesn’t creates a facebook login screen. I have just used graphics to create two boxes with an option to enter username and password. This is program is to just give you an idea that how you can create a login screen for your project. #include<conio.h> #include<iostream.h> #include<graphics.h> #include<stdio.h> #include<dos.h> #include<process.h> void logo() …

C++ Program to Create Facebook Login Screen Read More »