Archive for 2014-01-26
C++ program to do linear search in Array
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int a[20],n,x,i,flag=0;
cout<<"How many Elements?";
cin>>n;
cout<<"\nEnter Elements of the Array\n";
for(i=0;i<n;++i)
.
Posted by Unknown
C++ program to create a loading bar
#include<iostream.h>
#include<conio.h>
#include<graphics.h>
#include<dos.h>
void main()
{
int x=170,i,gdriver=DETECT,gmode;
initgraph(&gdriver,&gmode,"c:\\tc\\bgi");
settextstyle(DEFAULT_FONT,HORIZ_DIR,2);
.
Posted by Unknown
How to Format an Unformattable Pendrive
Sometimes when you format your pendrive an error message is shown. This error is
shown because your pendrive is affected by viruses. You try hard to format your pendrive but you fail in doing so. In this post.
Posted by Unknown
C++ Program to Print Numbers From 1 to n Without Using Loops, Recursion or Go to Statement
#include<iostream>
using namespace std;
class Num
{
public:
static int i;
Num()
{
cout<<i++<<" ";
}
};
int.
Posted by Unknown