码迷,mamicode.com
首页 >  
搜索关键字:crt    ( 1749个结果
HDU 2014
#define _CRT_SECURE_NO_WARNINGS#include typedef float ElementType;void Select_Sort(ElementType n[], int num);void Swap(ElementType *a, ElementType *b)...
分类:其他好文   时间:2014-12-08 22:59:14    阅读次数:306
HDU 2010
#define _CRT_SECURE_NO_WARNINGS#include int Is_SXH(int num);int main(){ int in1, in2; int temp = 0; int flag = 0; while (scanf("%d %d", &in1, &in2) !=...
分类:其他好文   时间:2014-12-07 23:02:33    阅读次数:156
链表操作
#define _CRT_SECURE_NO_DEPRECATE /*取消scanf,printf不安全之类的错误提示*/#include #include typedef struct node{ int value; struct node* next;}listnode;listnode* ....
分类:其他好文   时间:2014-12-07 17:44:48    阅读次数:160
HDU 2007
/*杭电ACM ID:2007*/#define _CRT_SECURE_NO_WARNINGS#include int main(){ int in1, in2, out1, out2; int temp = 0, min, max; while (scanf("%d %d", &in1, &in...
分类:其他好文   时间:2014-12-07 17:35:18    阅读次数:113
KeyTool
keytool -genkey -alias www.lee.com -keyalg RSA -keystore f:/keys/lee keytool -export -file f:/keys/lee.crt -alias www.lee.com -keystore f:/keys/lee keytool -import -keystore %JAVA_HOME%\jre\lib\sec...
分类:其他好文   时间:2014-12-05 17:41:35    阅读次数:187
关于_ATL_MIN_CRT引出的问题
最近的一个ATL/WTL控件工程是用VC6生成的代码,然后在VS2008 EXPRESS EDITION版本中编译的,在Release版本中有两个选项: Release MinSize Release MinDependency 这两个选项的差异是前者是动态链接到ATL,后者是静态链接到ATL 编译后会遇到一个新问题: 找不到atlmincrt.lib 在VS2008 ...
分类:其他好文   时间:2014-11-29 16:00:14    阅读次数:233
www服务器SSL配置
安装mod_sslyuminstallmod_ssl–y配置文件路径/etc/httpd/conf.d/ssl.conf开放防火墙端口并保存iptables–IINPUT1–ptcp--dport443–jACCEPTserviceIptablessave/etc/pki/tls/certs生成证书目录makeaa.crt生成证书aa.crt将生成证书复制到/etc/httpd/conf下cpaa.*/etc/httpd/con..
分类:其他好文   时间:2014-11-28 14:34:23    阅读次数:179
Visual Studio 2012 编译错误【error C4996: 'scanf': This function or variable may be unsafe. 】的解决方案(转载)
转载:http://www.th7.cn/Program/c/201303/127343.shtml原因是Visual C++ 2012 使用了更加安全的 run-time library routines 。新的Security CRT functions(就是那些带有“_s”后缀的函数),请参见...
分类:其他好文   时间:2014-11-28 14:08:36    阅读次数:291
代码模版
startstart#define _CRT_SECURE_NO_DEPRECATE#include #include #include #include #include #include #include #include #include #include #include #include ...
分类:其他好文   时间:2014-11-27 21:43:06    阅读次数:226
数组的方式实现--栈 数制转换
例子:清华大学数据结构C语言版 P48十进制数N和其他d进制数的转换: N = (N div d)*d + N mod d; 其中,div为整除运算,mod为求余运算。 1 #define _CRT_SECURE_NO_DEPRECATE /*取消scanf,printf不安全之类的错误提示*/ ....
分类:编程语言   时间:2014-11-24 16:59:56    阅读次数:269
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!