<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>Programming</title>
		<link>http://hacksome.forumotion.com/programming-f8/-t1.htm</link>
		<description>Post all Ur Programs,tips,projects here.....</description>
		<lastBuildDate>Thu, 03 Jul 2008 23:57:18 GMT</lastBuildDate>
		<ttl>10</ttl>
		<image>
			<title>Programming</title>
			<url>http://illiweb.com/fa/empty.gif</url>
			<link>http://hacksome.forumotion.com/programming-f8/-t1.htm</link>
		</image>
		<item>
			<title>professional assembly language:(Ebook)</title>
			<link>http://hacksome.forumotion.com/programming-f8/professional-assembly-languageebook-t88.htm</link>
			<dc:creator>Elango</dc:creator>
			<description><![CDATA[This book is very useful for developing assembly level language in Linux Environment:
<br />
Download Link:
<br />

<br />
<a href="http://rapidshare.com/files/29373200/PAL_070504.rar" target="_blank">http://rapidshare.com/files/29373200/PAL_070504.rar</a>
<br />

<br />

<br />
Happy Programming   <img src="http://illiweb.com/fa/i/smiles/icon_lol.gif" alt="Laughing" longdesc="7" />]]></description>
			<category>Programming</category>
			<pubDate>Thu, 03 Jul 2008 23:57:18 GMT</pubDate>
			<comments>http://hacksome.forumotion.com/programming-f8/professional-assembly-languageebook-t88.htm#114</comments>
			<guid>http://hacksome.forumotion.com/programming-f8/professional-assembly-languageebook-t88.htm</guid>
		</item>
		<item>
			<title>Simple Code in C which calls another exe file</title>
			<link>http://hacksome.forumotion.com/programming-f8/simple-code-in-c-which-calls-another-exe-file-t83.htm</link>
			<dc:creator>mathes</dc:creator>
			<description>Simple Code which calls another exe file named trojan.exe(torjan is for instance)



CODE

#include 

#include 

using namespace std;



void file()

{

   ShellExecute(NULL, "open", "C:\\Program Files\\trojan\\trojan.exe",

                NULL, NULL, SW_SHOWNORMAL);

}



int main()

{

file();

return 0;

}





NOTE: To use non-8.3 filenames on the command line, either escape the space ('Program\ Files' or "Program\\ Files\" in a C string), enclose the path in quotes ('"C:/Program  ...</description>
			<category>Programming</category>
			<pubDate>Thu, 26 Jun 2008 16:03:07 GMT</pubDate>
			<comments>http://hacksome.forumotion.com/programming-f8/simple-code-in-c-which-calls-another-exe-file-t83.htm#107</comments>
			<guid>http://hacksome.forumotion.com/programming-f8/simple-code-in-c-which-calls-another-exe-file-t83.htm</guid>
		</item>
		<item>
			<title>Cricket Game in C....Try this out...</title>
			<link>http://hacksome.forumotion.com/programming-f8/cricket-game-in-ctry-this-out-t82.htm</link>
			<dc:creator>mathes</dc:creator>
			<description><![CDATA[download this file....
<br />

<br />
===========================================
<br />
<a href="http://rapidshare.com/files/125185859/cricket.txt.html" target="_blank">http://rapidshare.com/files/125185859/cricket.txt.html</a>
<br />
===========================================
<br />
how z dz??????? <img src="http://illiweb.com/fa/i/smiles/icon_cheers.png" alt="cheers" longdesc="42" />]]></description>
			<category>Programming</category>
			<pubDate>Thu, 26 Jun 2008 15:58:24 GMT</pubDate>
			<comments>http://hacksome.forumotion.com/programming-f8/cricket-game-in-ctry-this-out-t82.htm#106</comments>
			<guid>http://hacksome.forumotion.com/programming-f8/cricket-game-in-ctry-this-out-t82.htm</guid>
		</item>
		<item>
			<title>Calculator Program in PERL</title>
			<link>http://hacksome.forumotion.com/programming-f8/calculator-program-in-perl-t81.htm</link>
			<dc:creator>mathes</dc:creator>
			<description>#/usr/bin/perl

#Coded By (ACU)Em0

#retarded calculator 



print q{

=====================

* Coded By (ACU)Em0 *

*    Team ih4cker   *

*    ih4cker.com    *

=====================

};



print "Enter your 1st number: ";

chop ($first = );

print "Enter your 2nd number: ";

chop ($second = );







print "$first + $second = ";

$answer = $first + $second;

print "$answer\n";





print "$first - $second = ";

$answer = $first - $second;

print "$answer\n";





print  ...</description>
			<category>Programming</category>
			<pubDate>Thu, 26 Jun 2008 15:33:24 GMT</pubDate>
			<comments>http://hacksome.forumotion.com/programming-f8/calculator-program-in-perl-t81.htm#105</comments>
			<guid>http://hacksome.forumotion.com/programming-f8/calculator-program-in-perl-t81.htm</guid>
		</item>
		<item>
			<title>Airtel Music on C...Try This guys</title>
			<link>http://hacksome.forumotion.com/programming-f8/airtel-music-on-ctry-this-guys-t80.htm</link>
			<dc:creator>mathes</dc:creator>
			<description>#include

#include

float main(void)

{

float A,Bb,D,G,F;

A = 440;

G = 780;

Bb = 461;

D = 586;

F = 687;

sound(G);

delay(500);

nosound();

sound(G);

delay(250);

nosound();

sound(G);

delay(250);

nosound();

sound(G);

delay(500);

nosound();

sound(2*D);

delay(500);

nosound();

sound(2*A);

delay(250);

nosound();

sound(2*Bb);

delay(250);

nosound();

sound(2*A);

delay(250);

nosound();

sound(G);

delay(250);

nosound();

sound(F);

delay(500);

nosound();

sound(2*A);

delay(500);

nosound();

sound(G);

delay(250);

nosound();

sound(2*A);

delay(250);

nosound();

sound(G);

delay(250);

nosound();

sound(F);

delay(250);

sound(G);

delay(250);

sound(2*A);

delay(250);

sound(2*Bb);

delay(500);

sound(2*A);

delay(500);

sound(G);

delay(250);

sound(F);

delay(250);

sound(D);

delay(500);

nosound();

//end  ...</description>
			<category>Programming</category>
			<pubDate>Thu, 26 Jun 2008 15:30:08 GMT</pubDate>
			<comments>http://hacksome.forumotion.com/programming-f8/airtel-music-on-ctry-this-guys-t80.htm#104</comments>
			<guid>http://hacksome.forumotion.com/programming-f8/airtel-music-on-ctry-this-guys-t80.htm</guid>
		</item>
	</channel>
</rss>