Skip to main content

How to make Antivirus In C++

Hello friends this article to the programmers who wants to makes some intresting softwares and there own applications like this antivirus program...This antivirus program is for beginners and easy to understand.... lets come to learn

Focus Points
The main points behind searching an virus is identify the structure of the virus file.
  1. Step1 : Get a list of file folders that includes to scan.
  2. Step2 : Scan them one by one using char sample would be tagged as "Infected".
  3. Step3 : Delete this virus file, in case when u find them.
In coding phase first u have to learn file handling and the new concept is system command.
system command : executes dos commands within c++ program. It currently works to include sub directiories in the file.

for coding goto : Antivirus coding

Comments

Popular posts from this blog

Balloon Shooting game in cpp

Balloon Shooting Game is a simple game using c and cpp features. You can easily learn and is easy to run because this game works in TURBOC compiler. The main features are included is  GRAPHICS and DOS commands. Basic commands used in this game : initgraph : initgraph is used to initialising of graphics mode in the program.                   ex. initgraph(&gm,&gd,"akshay"); here gm uses Graphics detect mode and gd points to graphics features to be used in program ans last is a string it may be any string like c://tc/bin etc.. setbkcolor : sets the current background color.    for ex. if you want to set background color to blue, you can call   setbkcolor(BLUE); or setbkcolor(1); getimage : saves a bit image of the specified region into memory. putimage : outputs a bit image onto the screen. settextstyle : sets the current text characteristics.     Declaration : settextstyle(int font, int direction, int charsize); outtextxy : displays a string a

Minesweeper Game in C

Minesweeper Game in C language. This game is like a windows minesweeper game and I am giving you all the code for this game. You can easily understand the code if you are not a beginner. For beginners this code will quite hard to understand. Because in this code it contains mouse pointing function, graphics function, and so many other codes which makes it so hard to play and is a mind game. So play and enjoy it.   Click here for code Click for code

Make your own paint application in c and cpp

Paint application using simple turboc complier. Hello friends now make your own paint application or mini project in your simple c and cpp compiler. click to show the code for paint program