Memory scrambeler.

Discuss Programming / Linux questions.

Moderators: scallenger, Sky, TresCom Support Team

Post Reply
Lou-saydus
Pteranodon
Pteranodon
Posts: 983
Joined: Wed Sep 10, 2003 11:18 pm

Memory scrambeler.

Post by Lou-saydus »

Code: Select all

#include <stdio.h>


main()
{
	register int x, y, z;
   char *ptr_scramb, scramb;
   scramb = 'a';

   for (x=0;x<=9999999;x++){
   	*ptr_scramb = scramb;
      ptr_scramb + 1;
   }
}
   
well i was wondering if this would work. {i really dont want to test it} :lol:
Post Reply