Does this challenge have anything to do with Caesar? Not really, but I have a reputation to uphold.
#include <stdio.h>
#include <stdlib.h>
int main() {
unsigned int ct[] = {1804289294, 846930853, 1681692701, 1714636821, 1957747754, 424238262, 719885333, 1649760399, 596516680, 1189641379, 1025202333, 1350490079, 783368621, 1102519961, 2044897670, 1967513898, 1365180437, 1540383399, 304089122, 1303455645, 35005252, 521595297, 294702520, 1726956537, 336465694, 861021493, 278722907, 233665028, 2145174107, 468703211, 1101513878, 1801979893, 1315633920, 635723117, 1369133182, 1125898194, 1059961428, 2089018428, 628175056, 1656478011, 1131176279, 1653377282, 859484519, 1914545010, 608413758, 756898438, 1734575148, 1973594289, 149798388, 2038664390, 1129566373, 184803503, 412776168, 1424269001};
unsigned int *ptr = ct;
while(*ptr) {
printf("%c", rand()^(*(ptr++)));
}
printf("\n");
}
C writeup for C challenge. rand()
called without seeding first will always return the same results.