摘要:
DML: SELECT - 从数据库表中获取数据 UPDATE - 更新数据库表中的数据 DELETE - 从数据库表中删除数据 INSERT INTO - 向数据库表中插入数据 DDL: CREATE DATABASE - 创建新数据库 ALTER DATABASE - 修改数据库 CREATE 阅读全文
posted @ 2017-01-22 13:52
see_u
阅读(143)
评论(0)
推荐(0)
摘要:
在C++环境下使用C函数的时候,常常会出现编译器无法找到obj模块中的C函数定义,从而导致链接失败的情况,应该如何解决这种情况呢? 答案与分析: C++语言在编译的时候为了解决函数的多态问题,会将函数名和参数联合起来生成一个中间的函数名称,而C语言则不会,因此会造成链接时找不到对应函数的情况,此时C 阅读全文
posted @ 2017-01-22 13:50
see_u
阅读(284)
评论(0)
推荐(0)
摘要:
CREATE TABLE tutorials_tbl(tutorial_id INT NOT NULL AUTO_INCREMENT,tutorial_title VARCHAR(100) NOT NULL,tutorial_author VARCHAR(40) NOT NULL,submissio 阅读全文
posted @ 2017-01-22 13:48
see_u
阅读(180)
评论(0)
推荐(0)
摘要:
/*数组和指针*/ #include <stdio.h>#include <stdlib.h> int main(){ test1(); test2(); test3(); test4(); test5(); return 0;} //已知第二维int test1(){ int N = 3; int 阅读全文
posted @ 2017-01-22 13:46
see_u
阅读(123)
评论(0)
推荐(0)
摘要:
#include <iostream>#include <stdio.h>#include <stdlib.h>using namespace std; const int N = 5;const int n = 5;const int m = 8;const int M = 8; //已知第二维i 阅读全文
posted @ 2017-01-22 13:42
see_u
阅读(155)
评论(0)
推荐(0)
摘要:
#include <stdio.h>#include <stdlib.h> //单片机函数的写法,入口函数,中断函数等等(*(void(*) ())0)(); //调用地址=0的地方的入口代码 //声明一个函数,地址在0x8000,接收3个int型参数,返回long型结果((long (code * 阅读全文
posted @ 2017-01-22 13:41
see_u
阅读(143)
评论(0)
推荐(0)
浙公网安备 33010602011771号