Ad

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Sunday, September 15, 2013

Free Virus Scanner -- Antivirus Software

Is your Computer infected ? HouseCall software can quickly identify and fix a wide range of threats including viruses, worms, Trojans, and spyware. Includes:
  • The software is included Full scan, Custom scan and Quick scan option,
  • Support for 64-bit, Windows 7, Windows 7 SP1, and Windows 8. 
It is a popular and effective software for identifying and removing viruses, trojans, worms, unwanted browser plugins, and other malware software.


What's new in HouseCall?

  • Full system and custom scan options are available. So, users can easily specify which folders to scan
  • Quick scan option offers targeted scanning of critical system areas and active threats, reducing scan times to within a few minutes.
  • Smart Scan technology references threat intelligence in the cloud, delivering the latest protection while reducing download times
  • Smart Feedback shares threat information with the Smart Protection Network, which correlates data from a global intelligence network to quickly discover new threats
  • Review and Restore functionality lets you check and compare scan results and recover files
  • Enhanced detection and cleanup addresses rootkits and other sophisticated threats.

Making a Virus by Using Notepad or other Text Editor

Disable Keyboard by Batch File Programming

  •  What is Batch File Programming ?
          Batch file programming is the native programming offered by the Microsoft Windows Operating
System. Batch file is created using any text editors like notepad, WordPad, WinWord or so on, which
comprises of a sequence of built-in commands used to perform some often done tasks like deleting a
series of files of same type or of different type, creating logs, clearing unwanted craps from your
computer and even for creating a batch VIRUS.
Whenever a Batch program is executed, it was interpreted line-by-line by the CLI (Command
Line Interpreter) command.com or the cmd.exe. Batch file is really helpful in automating tedious tasks
and for maintaining system logs. The commands used while creating a batch file are case insensitive, in
the sense that it may accept both lower and upper case letters.

Wednesday, September 4, 2013

Uva 11530 - SMS Typing

SMS Typing in Uva is a string related problem. Before writing the code you should know about string. Let's see What is string ?

string : string in C Programming Language is actually a one-dimensional array of characters which is terminated by a null character '\0'.

The following declaration and initialization create a string consisting of the word "Hello". To hold the null character at the end of the array, the size of the character array containing the string is one more than the number of characters in the word "Hello".