手机版
热门标签
站点地图
我要投稿
广告合作
联系我们
搜 索
广告位招租
广告位招租
切换导航
首页
编程教程
编程导航
编程百科
编程问答
编程博文
编程实例
硬件设备
网络运营
软件教程
移动数码
办公软件
操作系统
人工智能
栏目导航
▸ 编程语言
▸ 前端开发
▸ 移动开发
▸ 开发工具
▸ 程序设计
▸ 行业应用
▸ CMS系统
▸ 服务器
▸ 数据库
公众号推荐
微信公众号搜
"智元新知"
关注
微信扫一扫可直接关注哦!
子栏目导航
PHP
Java
Java SE
Python
NumPy
C#
C&C++
Ruby
VB
asp.Net
Go
Perl
netty
gRPC
Django
Delphi
Jsp
.NET Core
Spring
Flask
Springboot
SpringMVC
Spring Cloud
Lua
fastadmin
Laravel
Mybatis
Asp
Groovy
ThinkPHP
Yii
swoole
编程之家
C&C++
c语言 11
1、原始函数,使用下标运算符 #include <stdio.h> #include <ctype.h> void upper(char x[]) { int tmp = 0;
作者:编程之家 时间:2022-11-26
c语言中strcmp函数, 函数原型、头文件
1、函数原型 #include <stdio.h> int strcmp(const char *s1, const char *s2) { while(*s1 == *s2) { if(
作者:编程之家 时间:2022-11-26
c语言中atoi、atol、atof函数,字符串转换函数
c语言标准函数库提供了字符串转换函数。 1、atoi 将字符串转换为int型 #include <stdio.h> #include <stdlib.h> int main(v
作者:编程之家 时间:2022-11-26
c语言中利用结构体计算两点之间的距离
c语言中利用结构体计算两点之间的距离。 1、 #include <stdio.h> #include <math.h> // c语言中基本数学运算的头文件,这里 sqrt函数使
作者:编程之家 时间:2022-11-26
c语言中strcpy函数,函数原型、头文件
1、函数原型。 #include <stdio.h> char *strcpy(char *s1, const char *s2) { char *t = s1; while(*s1++
作者:编程之家 时间:2022-11-26
c语言中strncmp函数,函数原型,头文件
1、函数原型 #include <stdio.h> int strncmp(const char *s1, const char *s2, size_t n) { while(n &
作者:编程之家 时间:2022-11-26
c语言 11-4
1、 #include <stdio.h> void put(const char *s) { while(*s) putchar(*s++); putchar('\n')
作者:编程之家 时间:2022-11-26
c语言 12-4
1、 #include <stdio.h> #include <string.h> #define NUMBER 5 #define NAME_LEN 64 typedef s
作者:编程之家 时间:2022-11-26
c语言 11-10
1、字符串转换为int型 #include <stdio.h> int toint(char *s1) { int i, j = 0; while(*s1) { for(i = 0; i
作者:编程之家 时间:2022-11-26
c语言中返回结构体的函数
c语言中返回结构体的函数。(相同类型的结构体可以相互赋值。)。 1、 #include <stdio.h> struct xyz{ int x; long y; double z; };
作者:编程之家 时间:2022-11-26
c语言 11-5
1、 #include <stdio.h> int count(const char *s, int key) { int j = 0; while(*s) { if(*s == key)
作者:编程之家 时间:2022-11-26
c语言 12-3
1、 #include <stdio.h> typedef struct{ int x; long y; double z; }Assign; Assign fun(int a, long
作者:编程之家 时间:2022-11-26
c语言中结构体对象的声明、结构体成员的赋值、结构体成员的显示、.句点运算符的应用
c语言中结构体对象的声明、结构体成员的赋值、结构体成员的显示、.句点运算符的应用 1、 #include <stdio.h> //main 函数头文件 #include <strin
作者:编程之家 时间:2022-11-26
c语言中用结构体表示点的坐标,并计算两点之间的距离
c语言中用结构体表示点的坐标,并计算两点之间的距离 1、 #include <stdio.h> #include <math.h> #define sqr(x) ((x) *
作者:编程之家 时间:2022-11-26
c语言中返回结构体的函数结构体可以被赋值,类型相同的结构体可以相互赋值
1、 #include <stdio.h> struct xyz{ int x; long y; double z; }; struct xyz fun(int a, long b, do
作者:编程之家 时间:2022-11-26
c语言 13-1
1、 #include <stdio.h> int main(void) { FILE *fp; // 打开文件前,必须定义FILE*型指针变量。 char file[128]; prin
作者:编程之家 时间:2022-11-26
c语言中结构体数组
c语言中的结构体数组(数组元素为结构体)。 1、 #include <stdio.h> #include <string.h> #define NUMBER 5 #define
作者:编程之家 时间:2022-11-26
c语言中具有结构体成员的结构体
c语言中具有结构体成员的结构体。 1、 #include <stdio.h> #include <math.h> #define sqr(x) ((x) * (x)) type
作者:编程之家 时间:2022-11-26
c语言中将结构体对象指针作为函数的参数实现对结构体成员的修改
c语言中将结构体对象指针作为函数的参数实现对结构体成员的修改。 1、 #include <stdio.h> #define NAME_LEN 64 struct student{ char
作者:编程之家 时间:2022-11-26
C语言 12-1
1、 #include <stdio.h> // main函数头文件 #define NAME_LEN 64 // 对象式宏 struct student{ // 结构体声明, stude
作者:编程之家 时间:2022-11-26
c语言中打开、关闭文件示例
1、 #include <stdio.h> int main(void) { FILE *fp; //打开文件时,必须要提前在函数中定义FILE*型指针变量, 然后将fopen函数返回的F
作者:编程之家 时间:2022-11-26
c语言 12-5
1、 #include <stdio.h> #include <math.h> #define sqr(x) ((x) * (x)) typedef struct{ doubl
作者:编程之家 时间:2022-11-26
c语言中为结构体类型名定义typedef名
typedef的作用是对数据类型进行同义声明。 1、 #include <stdio.h> #define NAME_LEN 64 typedef struct student{ //结构
作者:编程之家 时间:2022-11-26
c语言 12-2
1、 #include <stdio.h> #define NAME_LEN 64 typedef struct student{ char name[NAME_LEN]; int hei
作者:编程之家 时间:2022-11-26
c语言 13-2
1、 #include <stdio.h> int main(void) { FILE *fp; // 打开文件前,必须定义FILE*型指针变量 char file[128]; print
作者:编程之家 时间:2022-11-26
c语言中结构体成员的初始化
c语言中结构体成员的初始化, 结构体的成员可以单独赋值,也可以进行整体的初始化来实现一次性赋值。 1、 #include <stdio.h> //main函数头文件 #define NAM
作者:编程之家 时间:2022-11-26
c语言中同时为两个数组排序
1、 #include <stdio.h> #include <string.h> #define NUMBER 5 #define NAME_LEN 64 void swap
作者:编程之家 时间:2022-11-26
c语言 12
1、 #include <stdio.h> #include <math.h> #define sqr(x) ((x) * (x)) typedef struct{ doubl
作者:编程之家 时间:2022-11-26
c语言获取当前日期和时间
1、 #include <stdio.h> #include <time.h> // time_t数据类型,日历时间头文件 int main(void) { time_t cu
作者:编程之家 时间:2022-11-26
c语言中输出文件的行数、每一列的总和、每一列的平均值
1、 #include <stdio.h> int main(void) { FILE *fp; int lines = 0; double c1, c2, c3; double c1su
作者:编程之家 时间:2022-11-26
上一页
5
6
7
8
9
10
11
12
下一页
小编推荐
热门标签
更多
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