mcrypt 示例不起作用
我正在用 C++ 代码开发 ubuntu。我想通过此链接测试 mcrypt 的示例: http://linux.die.net/man /3/mcrypt ,但是当我这样做时:
gcc test.c -o testt -lmcrypt
没有返回结果。为什么?
我哪里错了?
对于这两个示例,结果是相同的。欣赏!!
I am working on ubuntu in c++ code. I wanted to test an exmple with mcrypt from this link: http://linux.die.net/man/3/mcrypt , but whn i do:
gcc test.c -o testt -lmcrypt
there is no result back. why?
Where am I wrong?
For both examples the result is the same. appreciate!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有给出任何结果,因为没有错误(请参阅 UNIX 文化 [1])。
尝试运行生成的二进制文件以
查看输出(如果有)。
如果你愿意的话,探测文件
如果一切顺利,你将获得有关你的文件的各种信息:)
[1]:在《Unix 编程的艺术》中:http://www.faqs.org/docs/artu/ch01s06.html
gives no result, because there is no error (see UNIX culture[1]).
Try to run the resulting binary with
to see the output (if any).
Probe the file, if you will
If all is well, you'll get all kinds of information about your file :)
[1]: in The Art Of Unix Programming: http://www.faqs.org/docs/artu/ch01s06.html