Wednesday, 2 October 2013


# include # include #include using namespace std; class employee { char name[20]; int salary,exp; public: void getdata() { fflush(stdin); cin.getline(name,20); fflush(stdin); cin>>salary>>exp; } void putdata() { cout<

Saturday, 28 September 2013

skill question(1)


witre a c program to print a number is odd or even without using any control statement (if,for,switch...etc) also don't use ?: operator

My upcomming site's logo


Wednesday, 18 September 2013

C question


void main()
{
float a=20.12345,width=2;
printf("a=%*.2f",width,a);
getch();
}

Write Output with Explaination.

Question is only for c language(not c++).

Solve this without using compiler ->>

Level-Easy

void main()
{
int a=10,b=20,max;
max=maximum(a,b);
printf("maximum=%d",max);
getch();
}
int maximum(int a,int b)
{
return a*(a>b)+b*(b>a);
}

write output with explaination.

Tuesday, 9 July 2013

Welcome to Blog

welcome to black hat hacking blog. Here you will find all the tricks and methods used by black hat hackers for hackin purpose. Here you will also find awesome facebook tricks. So keep visiting this blog regularly to increase your techniqual knowledge.