Dll数据封装

#include "stdlib.h" #include "stdio.h" #include "string.h" typedef st…

Oracle笔记(五)

--1、goto --顺序控制语句 declare i int:=1; begin loop dbms_output.put_line('输出i='||i); …

Oracle笔记(四)

--游标 --游标是Oracle为用户开设的一个数据缓冲区,存放SQL语句的执行结果 --Oracle数据库中执行的每个SQL语句都有对应的单独的游标 --游标的分类: --a)隐式游标:处理单行SE…

Oracle笔记(三)

分支语句 if 条件 then 语句 end if; if 条件 then 语句1 else 语句2 end if; if 条件1 then 语句1 elsif 条件2 then ....…

c语言文件操作函数大全

一、标准文件的读写 1.文件的打开fopen() 文件的打开操作表示将给用户指定的文件在内存分配一个FILE结构区,并将该结构的指针返回给用户程序,以后用户程序就可用此…

二维数组指针实质及应用

#include <iostream> #include <cstdio> using namespace std; int main() { int b[3][5…

数组名地址和首元素地址的辨析

#include <iostream> #include <cstdio> using namespace std; int main() { //定义数组的特殊方…

C字符串操作:字符串反转

#include "stdio.h" #include "stdlib.h" #include "string.h" void main…

C字符串操作:两头堵实现trim()

#include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h&g…

Oracle笔记(二)

--PL/SQL编程(procedure language )过程化的SQL编程 --SQL块,过程procedure,函数function,包package,触发器trigger --简单块 顺序 …