Name:
Anonymous
2009-03-04 20:14
#include <stdio.h>
#include <stdlib.h>
unsigned long long rpow(int n, int p) {
return p ? p==1 ? n : n * rpow(n,p-1) : 1;
}
int main(int argc, char **argv) {
if(argv[1])
if(argv[2]) {
int n = atoi(argv[1]);
int p = atoi(argv[2]);
printf("%llu\n",rpow(n,p));
}
return 0;
}
Name:
FrozenVoid
2009-03-06 5:26
>>18
I can run the script again and destroy all current threads. Just give me a reason.
___________________________________
Well, as tragic as all this is, it's a small price to pay for countless hours of top-notch entertainment!