码迷,mamicode.com
首页 >  
搜索关键字:include    ( 84546个结果
lfs遇到的一些问题--后续阶段
安装GPM-1.20.7,make install出错:prog/display-buttons.c:39:57: 致命错误:gpm.h:没有那个文件或目录 #include /* gpm information */ ...
分类:其他好文   时间:2014-04-30 19:17:10    阅读次数:497
c++访问mysql数据库
首先,把mysql目录下的include放到项目目录下,然后把libmysql.lib和libmysql.dll放到debug目录下。#include之前一定要加上#include否则会产生编译错误。#include "stdafx.h"#include #include "include\mysq...
分类:数据库   时间:2014-04-30 18:37:44    阅读次数:413
14-4-28
$sql = "select * from student ";获取全部数据isset()判断$myaql_connect连接数据库$myaql_close结束连接数据库include(""."")连接页面mysql_query()向与指定的连接标识符关联的服务器中的当前活动数据库发送一条查询mys...
分类:其他好文   时间:2014-04-30 18:09:17    阅读次数:396
DMP文件的生成和使用
1、生成dmp的程序#include#pragmacomment(lib, "dbghelp.lib")//设置异常处理回调函数SetUnhandledExceptionFilter(UnhandledExceptionFilter);//异常处理代码//EXCEPTION_EXECUTE_HAND...
分类:其他好文   时间:2014-04-30 17:14:57    阅读次数:1111
WebMatrix Database.Open… Close() and Dispose()
ASP.NET Web Pages framework examples of the Database helper do not include calls to Close or Dispose because the framework itself is designed to call ...
分类:数据库   时间:2014-04-30 14:08:51    阅读次数:629
char*,string,float,int 转换
char* 转 float:double atof (const char* str);/* atof example: sine calculator */#include /* printf, fgets */#include /* atof */#include ...
分类:其他好文   时间:2014-04-30 13:44:13    阅读次数:410
【HDOJ】2157 How many ways??
矩阵乘法,用DP做各种wa,后来发现原因了。 1 #include 2 #include 3 4 typedef struct { 5 int map[20][20]; 6 } matrix_st; 7 8 matrix_st res, org; 9 int n, m;10 11 m...
分类:其他好文   时间:2014-04-29 11:26:46    阅读次数:418
【ACM - 搜索模板】
【广搜模板】#include #include #include #include using namespace std;#define MAXX #define MAXYstruct Node{ int x,y; int step;};int n,m; //边界int dx[4...
分类:其他好文   时间:2014-04-29 11:14:46    阅读次数:334
Codeforces Round #243 (Div. 2) C. Sereja and Swaps
由于n比较小,直接暴力解决#include #include #include #include #include #includeusing namespace std;int main(){ int n,k; cin >> n >> k; vector a(n); for...
分类:其他好文   时间:2014-04-29 09:18:46    阅读次数:412
hdu 1.3.1 Moving Tables
这道题比较简单,就是用数组存取其路径。如101和102是对门,其过道号可以记为51. 1和2之间的为1. 今早突然收到操作系统停课的通知,哈哈 回来就做一下水题,开心 1 #include 2 #include 3 int main() 4 { 5 //freopen("input.txt"...
分类:其他好文   时间:2014-04-29 09:15:47    阅读次数:370
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!