find hcf and lcm C program

0 comments
The code below finds highest common factor and least common multiple of two integers. HCF is also known as greatest common divisor(GCD) or greatest common factor(gcf).

#include <stdio.h>
 #include <conio.h>
int main() {
int a, b, x, y, t, gcd, lcm;

printf("Enter two integers\n");
scanf("%d%d", &x, &y);

a = x;
b = y;

while (b != 0) {
t = b;
b = a % b;
a = t;
}

gcd = a;
lcm = (x*y)/gcd;

printf("Greatest common divisor of %d and %d = %d\n", x, y, gcd);
printf("Least common multiple of %d and %d = %d\n", x, y, lcm);

return 0;
}

C program to check odd or even using bitwise operator

0 comments
#include<stdio.h>
 #include<conio.h>
main()
{
int n;

printf("Enter an integer\n");
scanf("%d",&n);

if ( n & 1 == 1 )
printf("Odd\n");
else
printf("Even\n");

return 0;
}

Shopping Management System.

0 comments
#include<stdlib.h>
#include<iostream.h>
#include<string.h>
#include<conio.h>

Library Management System

0 comments

How to Make Menu using php Array

0 comments

<?php

$menu = array(
"HOME" => "http://hackresource.blogspot.com",
"Google" => "http://www.google.com",
"PHP" => "http://hackresource.blogspot.com/search/label/PHP"
);

?>
<html>
<head>
<title>teste</title>
</head>
<body>
<a href="<?php echo $menu['HOME']; ?>" target="_blank">Home</a> <br>
<a href="<?php echo $menu['Google']; ?>" target="_blank"> Google </a><br>
<a href="<?php echo $menu['PHP']; ?>" target="_blank"> PHP </a>
</body>
</html>

target is attribute of anchor tag   specifies where to open the linked document values are:
_blank               Opens the linked document in a new window or tab
_self                  Opens the linked document in the same frame as it was clicked (this is default)
_parent             Opens the linked document in the parent frame
_top                  Opens the linked document in the full body of the window

C++ Program for CPU scheduling algorithms

3 comments
Using  C++ program for Implementatin of CPU scheduling algorithms
Please feel free to ask question about it and report the errors.please support by improving the program and share with us.thanx
  •  First Come First Serve
  •  Shortest Job First
  •  Round Robin
:: Dev c++ 4.9.9.2 used

Updated Keymail the KeyLogger

0 comments
 Keymail is a stealth (somewhat) key logger that e-mails key strokes to whoever is set in the #define options at compile time.  This code is for educational uses, it should be useful for those that want to learn more about using sockets in C and Windows key loggers. Don't be an ass hat with it, I'll only answer intelligent questions about it so don't e-mail me about the code unless it's to contribute or to ask an intelligent question. Cool thing about it, if Anti-virus apps start to detect it you should be able to just change it a little and recompile it

    White Scorpion (  http://www.white-scorpion.nl ) did the initial work on the key logger, but he has gone on to bigger and better things.  This version was crafted by Irongeek, who tacked on some code to make it send e-mails, along with a few other changes.  If some of the code is crappy, blame Irongeek and not White Scorpion. Please send Irongeek improvements and he will post the changes and give you credit for your contributions. It can be compiled with the Open Source Mingw and the Bloodshed IDE.

        Don't forget to change the e-mail options when you compile it. Also, check the SMTP log file for debugging information.
In this version (v 0.8) some Error are removed .
Note : Compile notes: I used Dev-C++  to compie this. if you get an error like:
Linker error] undefined reference to `WSAStartup@8'
Add this:
-lws2_32
to Tools->Compiler Options under the section on compile flags.

  Please feel free to ask question about it and report the errors.please support by improving the program and share with us.thanx

Keymail the KeyLogger

0 comments
 Keymail is a stealth (somewhat) key logger that e-mails key strokes to whoever is set in the #define options at compile time.  This code is for educational uses, it should be useful for those that want to learn more about using sockets in C and Windows key loggers. Don't be an ass hat with it, I'll only answer intelligent questions about it so don't e-mail me about the code unless it's to contribute or to ask an intelligent question. Cool thing about it, if Anti-virus apps start to detect it you should be able to just change it a little and recompile it

    White Scorpion (  http://www.white-scorpion.nl ) did the initial work on the key logger, but he has gone on to bigger and better things.  This version was crafted by Irongeek, who tacked on some code to make it send e-mails, along with a few other changes.  If some of the code is crappy, blame Irongeek and not White Scorpion. Please send Irongeek improvements and he will post the changes and give you credit for your contributions. It can be compiled with the Open Source Mingw and the Bloodshed IDE.

        Don't forget to change the e-mail options when you compile it. Also, check the SMTP log file for debugging information.
  Please feel free to ask question about it and report the errors.please support by improving the program and share with us.thanx

Learning PHP Design Patterns

0 comments