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

HOW TO KNOW ADMIN PASSWORD THROUGH GUEST ACCOUNT

1) Go to C:/windows/system32. 2) Copy cmd.exe and paste it on desktop. 3) Rename cmd.exe to sethc.exe. 4) Copy the new sethc.exe to system 32,when windows asks for overwriting the file,then click yes. 5) Now Log out from your guest account.
Posted by Unknown

IP Address Definitions

 Short for Internet Protocol address, an IP address is an address of a computer or other network device on a network using TCP/IP. For example, the number "166.70.10.23" is an example of such an address. These addresses are similar.
Posted by Unknown

Enabling Windows God Mode

Microsoft Windows Vista (32-bit version) introduced a new hidden feature called God Mode that allows you to view and adjust all settings within Windows. To create a shortcut to the God Mode in Windows Vista (32-bit) or any version of Windows.
Posted by Unknown

Cleaning The Computer And Its Components

Cleaning your computer and your computer components and peripherals helps keep the components and computer in good working condition and helps keep the computers from spreading germs. In the picture to the right, is a good example of how.
Posted by Unknown

© 2025 Information Technology