Name: Anonymous 2009-01-22 9:38
what is the output of this program?
#include <stdio.h>
#include <unistd.h>
int main(void){
char *s[2] = {"a", "b"}, *d[2];
d[0] = crypt(s[0], "xx");
d[1] = crypt(s[1], "xx");
printf("%s -> %s\n%s -> %s\n", s[0], d[0], s[1], d[1]);
return 0;
}