Search results

  1. G

    Line By Line Compilation in C/C++

    Use 'F7' key
  2. G

    Keylogger program.

    You should know how to make a TSR (Terminate and stay resident).
  3. G

    Using SQL Plus only

    Try Oracle 10g Express Edition Only 206MB setup. Free to download. Install size 1.30GB
  4. G

    Is this possible...? Can anyone do this?

    If you want to develop an exe yourself, here is what you need to do (assuming c++) 1) open the file to modify (no notepad needed use IOstreams) 2) use a string matching algorithm( first try using Brute Force, for efficient algo use KMP string matching algo) 3) move file pointer to beginning of...
  5. G

    Integer range in C

    32772 = 1000 0000 0000 0100 Since negative numbers are stored in 2's complement form Therefore, 1's complement of 1000 0000 0000 0100 = 0111 1111 1111 1011 2's complement of 1000 0000 0000 0100 = 0111 1111 1111 1100 which is 32764 in decimal. Since sign bit is set...
  6. G

    which games r playable in emulator??

    WWE Here Comes the pain is fully playable. I can play any 1v1 match at 45fps on my system (AMD 5600+,ati 2600xt,2GB).
  7. G

    [By Demand] May 2008 DVD/CD

    Windows automated installation kit [WAIK] 1.1
  8. G

    Post your C/C++ Programs Here

    Re: Post ur C/C++ Programs Here //Program to perform operations on a binary search tree #include<iostream.h> #include<conio.h> struct node { int data; node *left; node *right; }; class bstree { private: node *root; public: bstree() { root=NULL; } ~bstree() { cout<<"\nDestructor called\n"...
  9. G

    need help about c....

    If you have no prior experience in programming it will be very tough to learn by yourself. Turbo C++ IDE is fine for running both C & C++ programs Suggested books: For Beginners :- Object Oriented Programming in C++ by Robert Lafore Excellent book for Beginners For Advanced C++ :-...
Top Bottom