E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
stdlib
纯C实现面向对象之接口编程
创建如下文件目录 : Shape.h #include <
stdlib
.h> //接口 #ifndef Interface #define Interface struct
·
2015-10-28 08:04
面向对象
【Valgrind】How to check if we reading uninitialized memory in 10 min
1 #include <stdio.h> 2 #include <
stdlib
.h> 3 4 int main(int argc, char** argv)
·
2015-10-28 07:58
reading
HDU 1042 N! (大数阶乘)
pid=1042 思路:大数阶乘 代码如下: 1 #include<stdio.h> 2 #include<string.h> 3 #include<
stdlib
.h
·
2015-10-27 16:23
HDU
linux C中调用shell命令和运行shell脚本 (
1、system(执行shell 命令) 相关函数 fork,execve,waitpid,popen表头文件 #include<
stdlib
.h>定义函数 int system(const
·
2015-10-27 16:42
shell命令
线段树模板
//logn时间查找任意一段数的新信息 #include<stdio.h>#include<
stdlib
.h>typedef struct node{int l,r;int good
·
2015-10-27 16:33
线段树
Linux之Hello World
1 Source code hello.c 1 /* hello.c */ 2 #include <
stdlib
.h> 3 #include <stdio.h
·
2015-10-27 16:32
Hello world
Embedded之Makefile
$ touch a.h $ touch b.h $ touch c.h 2 Source files 1 /* main.c */ 2 #include <
stdlib
.h
·
2015-10-27 16:31
makefile
四则运算
#include<stdio.h>#include<
stdlib
.h>#include<math.h>#define ADD1 sizeof(kuohao)#define
·
2015-10-27 16:44
四则运算
POJ 1502 MPI Maelstrom
include < stdio.h > #include < string .h > #include <
stdlib
.h
·
2015-10-27 16:38
poj
四则运算
#include<stdio.h> #include<
stdlib
.h> #include<time.h> #define random(x) (rand()%
·
2015-10-27 16:56
四则运算
四则运算
李炫宗**time: 2015.03.27**function: 小学生四则运算考试模拟系统**华南师范大学增城学院*/ #include <stdio.h>#include <
stdlib
.h
·
2015-10-27 16:31
四则运算
递归下降语法分析
1 # include <stdio.h> 2 # include <string.h> 3 # include <
stdlib
.h> 4 int
·
2015-10-27 16:36
递归
从网上搜索到的一些关于pcap源代码,入门级的
/*pcap_1.c*/ #include <stdio.h> #include <
stdlib
.h> #include <pcap.h> /* 
·
2015-10-27 16:16
源代码
UNIX环境编程学习笔记(12)——文件I/O之目录操作
例如,下面例子所示, #include <
stdlib
.h> #include <stdio.h> #includ
·
2015-10-27 16:04
unix
取消线程,是否会释放线程的所有资源?
#include <
stdlib
.h> #include <pthread.h> #include <stdio.h> #include <sched.h
·
2015-10-27 16:25
线程
线程属性的初始化以及销毁
.*/ #include <
stdlib
.h>
·
2015-10-27 16:25
初始化
pthread_testcancel和pthread_cancel函数的简单示例
例子:*/ #include <
stdlib
.h> #include <pthread.h> #include <stdio.h&g
·
2015-10-27 16:24
pthread
pthread_setschedparam
1 #include <
stdlib
.h> 2 #include <pthread.h> 3 #include <stdio.h> 4 #include
·
2015-10-27 16:24
pthread
非分离线程使用join函数例子
//非分离线程使用join函数例子: #include<
stdlib
.h> #include<pthread.h> #include<stdio.h> #include
·
2015-10-27 16:23
JOIN
pthread_once函数的简单示例
例子:*/ #include <
stdlib
.h> #in
·
2015-10-27 16:23
pthread
非分离线程未使用join函数例子:
//非分离线程未使用join函数例子: #include<
stdlib
.h> #include<pthread.h> #include<stdio.h> #include
·
2015-10-27 16:22
JOIN
打印二叉树
#include <stdio.h> #include <string.h> #include <
stdlib
.h> #define MAX 1000 /*
·
2015-10-27 16:17
二叉树
getenv(取得环境变量内容)
getenv(取得环境变量内容) 相关函数 putenv,setenv,unsetenv 表头文件 #include<
stdlib
.h> 定义函数 char * getenv
·
2015-10-27 16:54
环境变量
练习1
#include<stdio.h>#include<
stdlib
.h>#include <time.h> int main(){ int a,b,choice
·
2015-10-27 16:48
小学四则运算
#include <
stdlib
.h>#include <stdio.h>#include <time.h>int question_get();int type;void
·
2015-10-27 16:20
四则运算
c++ 从标注输入流读取行
string.h> #include <iostream> #include <vector> #include <stdio.h> #include <
stdlib
.h
·
2015-10-27 16:00
C++
zoj 1610(明天做)
#include<stdio.h> #include<string.h> #include<
stdlib
.h> #define N 8000 int flag
·
2015-10-27 16:40
ZOJ
HDU 1042(N!)
100*20 + 20*20+3 //常规方法N>=13就溢出 #include<stdio.h> #include<string.h> #include<
stdlib
.h
·
2015-10-27 16:28
HDU
uva 10066 The Twin Towers (最长公共子)
#include<stdio.h> #include<string.h> #include<
stdlib
.h> #include<algorithm> using
·
2015-10-27 15:10
uva
Linux 多播(组播)例程
types.h>#include <sys/socket.h>#include <arpa/inet.h>#include <stdio.h>#include <
stdlib
·
2015-10-27 15:49
linux
linxu select 返回值
socket.h> #include <string.h> #include <netinet/in.h> #include <stdio.h> #include <
stdlib
.h
·
2015-10-27 15:09
select
字符串列表的C语言实现:c_strlist
废话也不多说了,可能会有朋友需要,所以这里直接把代码贴出来: #include <stdio.h> #include <
stdlib
.h> #include <string.h
·
2015-10-27 15:54
list
用加法模拟乘法
/* 用加法模拟乘法 */ #include <stdio.h> #include <
stdlib
.h
·
2015-10-27 15:56
模拟
四则运算
#include <
stdlib
.h> #include <stdio.h> #include<time.h>int main(void) { int n=0,i,
·
2015-10-27 15:47
四则运算
C 链表实现
#include<stdio.h> #include<
stdlib
.h> #define show_func_info() printf ("-------
·
2015-10-27 15:28
链表
201306114357—实验2
#include<stdio.h>#include <
stdlib
.h>#include <time.h>main(){ int a,b,c,sum=0,u
·
2015-10-27 15:07
libpq程序例子
. */ #include <stdio.h> #include <
stdlib
.h> #include "lib
·
2015-10-27 15:15
lib
libpq中调用prepared statement:
. */ #include <stdio.h> #include <
stdlib
.h> #include "l
·
2015-10-27 15:15
statement
简单四则运算
#include<stdio.h> #include<
stdlib
.h> #include<time.h> #include<string.h>
·
2015-10-27 15:15
四则运算
四则运算改上改
#include<stdio.h> #include<
stdlib
.h> #include<time.h> #include<string.h>
·
2015-10-27 15:15
四则运算
2008秋季-计算机软件基础-有序表合并 教材 P79, ex3
/* 计算机软件基础 教材 P79, ex3 */ #include < stdio.h > #include <
stdlib
.h
·
2015-10-27 15:52
2008
开发工具(三)
#include <
stdlib
.h>#include <stdio.h>int main(){
·
2015-10-27 15:44
开发工具
【字符串】若干编程
#include<stdio.h> #include<
stdlib
.h> #include<string.h> char * maxTimeSubStr(const
·
2015-10-27 15:17
字符串
【编程之美】2.19 区间重合判断
#include <stdio.h> #include <
stdlib
.h>
·
2015-10-27 15:23
编程之美
【编程之美】2.12快速寻找满足条件的两个数
/* start time = 16:57 end time = 17:15 */ #include <iostream> #include <
stdlib
.h> u
·
2015-10-27 15:17
编程之美
【数据结构】book3_3 表达式求值
#include<iostream> #include <
stdlib
.h> using namespace std; typedef int Status; const
·
2015-10-27 15:44
数据结构
【数据结构】3.19
括号配对题 判断(){}[]的出现是否匹配 用Stack实现 #include<iostream> #include <
stdlib
.h> using namespace
·
2015-10-27 15:43
数据结构
四则运算
代码#include<stdio.h> #include<
stdlib
.h> main() { int i,c,h[5],d,s[10],ts=0,ts1,x; char
·
2015-10-27 15:31
四则运算
实验1
#include <stdio.h>#include <ctype.h>#include <time.h>#include <
stdlib
.h>#include
·
2015-10-27 15:09
练习1——四则运算
源代码: #include<stdio.h> #include<
stdlib
.h> #include<time.h> main(){ int a,b,
·
2015-10-27 15:06
四则运算
上一页
91
92
93
94
95
96
97
98
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他