手机版
热门标签
站点地图
我要投稿
广告合作
联系我们
搜 索
广告位招租
广告位招租
切换导航
首页
编程教程
编程导航
编程百科
编程问答
编程博文
编程实例
硬件设备
网络运营
软件教程
移动数码
办公软件
操作系统
人工智能
栏目导航
▸ 编程语言
▸ 前端开发
▸ 移动开发
▸ 开发工具
▸ 程序设计
▸ 行业应用
▸ CMS系统
▸ 服务器
▸ 数据库
公众号推荐
微信公众号搜
"智元新知"
关注
微信扫一扫可直接关注哦!
子栏目导航
php实例代码
Javascript实例代码
python实例代码
Shell实例代码
Sql实例代码
正则表达式实例代码
Python函数
Java实例代码
C#实例代码
C语言实例代码
C++实例代码
Erlang实例代码
Dart实例代码
D3.js实例代码
D语言实例代码
CSS实例代码
Cobol实例代码
Clojure实例代码
Bootstrap实例代码
Vue实例代码
Angular实例代码
汇编语言实例
编程之家
C语言实例代码
C语言库strstr()函数
#include <stdio.h> #include <string.h> int main () { const char haystack[20] = "Yiibai Point";
作者:编程之家 时间:2022-07-04
C语言库strspn()函数
#include <stdio.h> #include <string.h> int main () { int len; const char str1[] = "ABCDEFG019874";
作者:编程之家 时间:2022-07-04
C语言库strrchr()函数
#include <stdio.h> #include <string.h> int main () { int len; const char str[] = "http://www.yiibai.com";
作者:编程之家 时间:2022-07-04
C语言库strpbrk()函数
#include <stdio.h> #include <string.h> int main () { const char str1[] = "abcde2fghi3jk4l";
作者:编程之家 时间:2022-07-04
C语言库strlen()函数
#include <stdio.h> #include <string.h> int main () { char str[50]; int len; strcpy(str, "This is yiibai.com");
作者:编程之家 时间:2022-07-04
C语言库strerror()函数
#include <stdio.h> #include <string.h> #include <errno.h> int main () { FILE *fp; fp = fopen("file.txt","r");
作者:编程之家 时间:2022-07-04
C语言库strcspn()函数
#include <stdio.h> #include <string.h> int main () { int len; const char str1[] = "ABCDEF4960910";
作者:编程之家 时间:2022-07-04
C语言库strncpy()函数
#include <stdio.h> #include <string.h> int main () { char src[40]; char dest[12]; memset(dest, '\\0', sizeof(dest));
作者:编程之家 时间:2022-07-04
C语言读取文件
// C语言读取文件 #include <stdio.h> int main() { FILE *fp; char buff[255]; fp = fopen("/tmp/test.txt", "r");
作者:编程之家 时间:2022-07-04
C语言访问存储的值
// C语言访问存储的值 #include <stdio.h> int main() { int a; int b; a = 10; b = 20; printf( "Value of a = %d\\n", a );
作者:编程之家 时间:2022-07-04
C语言字符变量
// C语言字符变量 // ------------------------------------ #include <stdio.h> int main() { char c;// char variable declaration
作者:编程之家 时间:2022-07-04
C语言整数变量
// C语言整数变量 // ----------------------------- #include <stdio.h> int main() { int i;// integer variable declaration
作者:编程之家 时间:2022-07-04
C语言浮点数变量
// ---------------------------------------- #include <stdio.h> int main() { float f;// floating point variable declaration
作者:编程之家 时间:2022-07-04
C语言双精度变量
// ---------------------------------------------- #include <stdio.h> int main() { double d;// double precision variable declaration
作者:编程之家 时间:2022-07-04
C语言相加操作
// #include <stdio.h> int main() { int op1, op2, sum;// variable declaration op1 = 5;// variable definition
作者:编程之家 时间:2022-07-04
C语言数字类型
// #include <stdio.h> int main() { shorts; inti; longl; floatf; double d; s = 10; i = 1000; l = 1000000;
作者:编程之家 时间:2022-07-04
C语言数学运算
// #include <stdio.h> #include <math.h> int main() { shorts; inti; longl; floatf; double d; printf( "sin(s): %f\\n", sin(10));
作者:编程之家 时间:2022-07-04
C语言print语句中的转义序列
// #include <stdio.h> int main() { charch1; charch2; charch3; charch4; ch1 = '\\t'; ch2 = '\\n';
作者:编程之家 时间:2022-07-04
C语言数组
#include <stdio.h> int main() { intnumber1; intnumber2; intnumber3; intnumber4; intnumber5; number1 = 10;
作者:编程之家 时间:2022-07-04
C语言%c打印字符值
// ------------------------------------- #include <stdio.h> int main() { char ch[5] = {'H', 'e', 'l', 'l', 'o'};
作者:编程之家 时间:2022-07-04
C语言字符串
#include <stdio.h> int main() { char ch[5] = "Hello"; int i = 0; /* Print as a complete string */
作者:编程之家 时间:2022-07-04
C语言函数
#include <stdio.h> int main() { int set1[5] = {10, 20, 30, 40, 50}; int set2[5] = {101, 201, 301, 401, 501};
作者:编程之家 时间:2022-07-04
C语言数学运算符
#include <stdio.h> int main() { int a, b, c; a = 10; b = 20; c = a + b; printf( "Value of c = %d\\n", c);
作者:编程之家 时间:2022-07-04
C语言printf()函数
// ----------------------- #include <stdio.h> int main() { int a; int b; a = 10; b = 20; printf( "Value of a = %d and value of b = %d\\n", a, b );
作者:编程之家 时间:2022-07-04
C语言库rename()函数
#include <stdio.h> int main () { int ret; char oldname[] = "file.txt"; char newname[] = "newfile.txt";
作者:编程之家 时间:2022-07-04
C语言库strxfrm()函数
// #include <stdio.h> #include <string.h> int main () { char dest[20]; char src[20]; int len; strcpy(src, "Yiibai Point");
作者:编程之家 时间:2022-07-04
C语言计数程序
// --------------------------------------- #include <stdio.h> int main() { int i, start, end; start = 1;
作者:编程之家 时间:2022-07-04
C语言反向计数程序
#include <stdio.h> int main() { int i, start, end; start = 1; end = 10; //reverse counting, we'll interchange loop variables
作者:编程之家 时间:2022-07-04
C语言打印偶数值
// -------------------------------------- #include <stdio.h> int main() { int i; for(i = 1; i <= 10; i++) {
作者:编程之家 时间:2022-07-04
C语言打印奇数值
// ------------------------------------- #include <stdio.h> int main() { int i; for(i = 1; i <= 10; i++) {
作者:编程之家 时间:2022-07-04
上一页
16
17
18
19
20
21
22
23
下一页
小编推荐
热门标签
更多
python
JavaScript
java
HTML
reactjs
C#
Android
CSS
Node.js
sql
r
python-3.x
MysqL
jQuery
c++
pandas
Flutter
angular
IOS
django
linux
swift
typescript
路由器
JSON
路由器设置
无线路由器
h3c
华三
华三路由器设置
华三路由器
电脑软件教程
arrays
docker
软件图文教程
C
vue.js
laravel
spring-boot
react-native