#include #include #include main() { char *str; str = (char*) malloc(255 * sizeof(char)); str = (char*) crypt("titok", "$6$aaaaaaaa$"); printf("%s\n", str); }