Hackers
now lets understand the person hacker
hacker is a person who breaks computer the subculture that has evolved around hacker is often reffered to as the computer underground.
History of hackers.
Fistly bruce sterling traces the root of the computer underground to the yippies, a 1960s counterculture movement.
Type of hacker.
@ white hat
a white hat hacker breaks security for non malicious reason. This type of hacker enjoys learning and working with computer systems and consequently gains a deeper understanding of subjects. Such pepoles normally go on use theis hacking skills in legitimate ways such as becoming the security consultant.
@ gray hat.
A gray hat hacker is a hacker of ambiguous etgics and or borderline lagality often frankly admitted.
@ black hat.
A black hat hacker is someone who subverts computer security withnut aurthorization or uses techonology for vandalism i.e. Malicious destruction, credit card funds, identity theft, intellectual property theft or other types of crime. They are also known as crakers.
@ cyberterrorist.
A cyberterrorist uses technology to comit act of terrorism. Their intentious are to cause physical, real-world harm to socity, social, ideological, religious, political or governmental establishments.
@ Script kiddies
A script kiddie are non-expert hacker who breaks into computer syste by using pre-designed scripts.
These are type of hackers.
Thank you,
tushar khoje.
Computer Dude here to help you....
This Blog Is Created By Tushar khoje And will try to solve computer related Problems, and will help to teach C programmings and other computer related things
Thursday, December 16, 2010
Hitman contracts
Hitman contracts.
Adding line "EnableCheats 1"
makes u the cheats enabling.
file name - hitmancontracts.ini
configuration setting file is in game folder.
Level informations = logos.gms
all level access = levelmemu.gms
system configurtions
cpu = pentium 4.16 ghz or athalon xp
ram = 256 mb
graphics = 64 mb 3d cara and 100 % directx 8.1
sound = windows compatible card
cd rom = 8x cd rom
hd = 2gb free space
weapons in this game,
ak47
aug
awp
deagle
elite
famas
fiveseven
g3sgl
glock 18
m3
m4al
mac10
mp5navy
p228
p90
scout
sg550
sg552
tmq
ump45
usp
xml1014
Adding line "EnableCheats 1"
makes u the cheats enabling.
file name - hitmancontracts.ini
configuration setting file is in game folder.
Level informations = logos.gms
all level access = levelmemu.gms
system configurtions
cpu = pentium 4.16 ghz or athalon xp
ram = 256 mb
graphics = 64 mb 3d cara and 100 % directx 8.1
sound = windows compatible card
cd rom = 8x cd rom
hd = 2gb free space
weapons in this game,
ak47
aug
awp
deagle
elite
famas
fiveseven
g3sgl
glock 18
m3
m4al
mac10
mp5navy
p228
p90
scout
sg550
sg552
tmq
ump45
usp
xml1014
Hitman contracts
Hitman contracts.
Adding line "EnableCheats 1"
makes u the cheats enabling.
file name - hitmancontracts.ini
configuration setting file is in game folder.
Level informations = logos.gms
all level access = levelmemu.gms
system configurtions
cpu = pentium 4.16 ghz or athalon xp
ram = 256 mb
graphics = 64 mb 3d cara and 100 % directx 8.1
sound = windows compatible card
cd rom = 8x cd rom
hd = 2gb free space
weapons in this game,
ak47
aug
awp
deagle
elite
famas
fiveseven
g3sgl
glock 18
m3
m4al
mac10
mp5navy
p228
p90
scout
sg550
sg552
tmq
ump45
usp
xml1014
Adding line "EnableCheats 1"
makes u the cheats enabling.
file name - hitmancontracts.ini
configuration setting file is in game folder.
Level informations = logos.gms
all level access = levelmemu.gms
system configurtions
cpu = pentium 4.16 ghz or athalon xp
ram = 256 mb
graphics = 64 mb 3d cara and 100 % directx 8.1
sound = windows compatible card
cd rom = 8x cd rom
hd = 2gb free space
weapons in this game,
ak47
aug
awp
deagle
elite
famas
fiveseven
g3sgl
glock 18
m3
m4al
mac10
mp5navy
p228
p90
scout
sg550
sg552
tmq
ump45
usp
xml1014
Friday, December 10, 2010
Thursday, December 9, 2010
use of a constant
//This program demonstrates the use of a constant
#include
int main()
{
const int constantNumber = 100; //Declaration of a constant.
It must be initialized immediately, else it picks up a garbage value.
//constantNumber = 30; Will generate an error. Cannot change the value of a constant
printf("The value is %d", constantNumber);
return 0;
}
#include
int main()
{
const int constantNumber = 100; //Declaration of a constant.
It must be initialized immediately, else it picks up a garbage value.
//constantNumber = 30; Will generate an error. Cannot change the value of a constant
printf("The value is %d", constantNumber);
return 0;
}
use of arithmetic operators and its precedense
//This program demonstrates the use of arithmetic operators and its precedense
#include
int main()
{
int value1, value2, value3;
clear();
value1 = 10;
value2 = 20;
value3 = value1 + value2 * 2;
printf("\nvalue1=%d, value2=%d, value1+value2*2=%d", value1, value2, value3);
value3 = (value1 + value2) * 2;
printf("\nvalue1=%d, value2=%d, (value1=value2)*2=%d", value1, value2, value3);
value1 = 20;
value2 = 10;
value3 = ((value1/value2)*value2)+(value1%value2);
printf("\nvalue1=%d, value2=%d, ((value1/value2)*value2)+(value1%value2)=%d", value1, value2, value3);
return 0;
}
#include
int main()
{
int value1, value2, value3;
clear();
value1 = 10;
value2 = 20;
value3 = value1 + value2 * 2;
printf("\nvalue1=%d, value2=%d, value1+value2*2=%d", value1, value2, value3);
value3 = (value1 + value2) * 2;
printf("\nvalue1=%d, value2=%d, (value1=value2)*2=%d", value1, value2, value3);
value1 = 20;
value2 = 10;
value3 = ((value1/value2)*value2)+(value1%value2);
printf("\nvalue1=%d, value2=%d, ((value1/value2)*value2)+(value1%value2)=%d", value1, value2, value3);
return 0;
}
Some C Refrence Books
main Book is Lets C By Yashwant Kanitkar obviously but here are some other Reference Books
References
1. ‘C’ Odyssey
By: Vijay Mukhi
2. C under UNIX
By: Y.P. Kanetkar
3. Thinking in C
By: Bruce Eckel
4. Let Us C
By: Y.P. Kanetkar
5. Programming in C
By: Dennis Ritchie and Kernighan
Thanks,
Tushar Khoje
References
1. ‘C’ Odyssey
By: Vijay Mukhi
2. C under UNIX
By: Y.P. Kanetkar
3. Thinking in C
By: Bruce Eckel
4. Let Us C
By: Y.P. Kanetkar
5. Programming in C
By: Dennis Ritchie and Kernighan
Thanks,
Tushar Khoje
Subscribe to:
Posts (Atom)