安装sublime text3之后,安装package control 报错,错误信息:There are no packages available for installation 根据提示,找到错误解决办法:https://packagecontrol.io/doc... 其实意思就是你的电脑代理出了问题&…
Procedure创建与执行:Case1:
create or replace procedure procedure_name(id user.table_name.columne_name%type)is begin delete from user.table_name where columne_nameid;exception when others then dbms_output.put_line(errors);end࿱…
当 Visual C 项目启用了预编译头 (Precompiled header) 功能时,如果项目中同时混合有 .c 和 .cpp 源文件,则可能收到 C1853 编译器错误:fatal error C1853: pjtname.pch precompiled header file is from a previous version of the compiler…
Windows 进程创建完整过程(除去细节) 当前流程是分析WinXP x86得到的,在最新版本Windows上不一定正确,但是可以做一个参考, 由于我这里符号并不全,所以导致我这里有些东西看到的可能是错误的,误…
1、认识指针#include <stdio.h>
//基本数据类型作为函数參数传递是值传递
//void moveFront(int x ,int y)
//{
// x x 2;
//}
void test()
{// 确定当前坐标int x 20;int y 150;printf("%p\n",&x);printf("%lu\n",&x);*((int *)(0…