SIMPLE C & C++ PROGRAM TO ADD TWO NO.
C programm
#include<stdio.h>
void main()
{
int a,b,c;
printf("Enter the value of a");
scanf("%d",&a);
printf("Enter the value of b");
scanf("%d",&b);
c=a+b;
printf("\nThe value of a+b is=%d",c);
}
C++ programm
#include<iostream.h>
void...
C++ PROGRAMMING INTRO
C++ PROGRAMMING
After the invention on 'C' there are lots of the changes came in programming world but at the name security C language fails ,then there is need of new Language which has security in the programming
C++ programming language is far better than 'C' programming language .It is like dad of 'C'.
In C++, classes are used to which...
HOW TO DOWNLOAD TORRENT FILES IN WITHOUT UTORRENT OR BITORRENT
HOW TO DOWNLOAD TORRENT FILES IN WITHOUT UTORRENT OR BITORRENT
Dont want to download Files using utorrent or bitorrent
got to www.zbigz.com ant uppload torrent file by selecting then ok ->Free
it will Caсhing torrent ,after complition click on zip and i will start downloading the file
use...
HOW TO Increase Firefox surfing speed

Increase Firefox surfing speed
Yes you can increase speed of firefox browser
lets start...
open firefox now
In the address bar type: “about:config” (Without quotes)
Click "yes i'll be careful,I promise"
paste folowing lines in search bar one by one and change...
How to Check ur antivirus WORKING OR NOT
How to Check ur antivirus
How to check that How much ur antivirus strict for virus
1.open notepad from start menu and copy this code written below
X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
2. save this notepad as whatever u name it like "anti.bat" and select save type as 'all files'
now ur antivirus...
A Simple C Program INTRO
A
Simple C Program
In every 'C' program must have "main" function .Here is the point where execution starts. The group of statements defined in the "main" enclosed in a pair of braces {}. Every expression statement must end with a semicolon &...