C语言随笔
零散的c语言小记
zxcwxkp
积蓄力量
展开
-
C语言实现查找素数
一、#include <stdio.h>#include <math.h>int prime( int p );int PrimeSum( int m, int n );int main(){ int m, n, p; scanf("%d %d", &m, &n); printf("Sum of ( "); for( p=m; p<=n; p++ ) { if( prime(p) != 0 )原创 2020-10-27 16:16:14 · 796 阅读 · 0 评论 -
两种访问结构体数组内对象的方法
void output(book*p,int i){ printf("the %d book tittle is %s\n",i+1,p[i].tittle); printf("the %d book author is %s\n",i+1,p[i].author); printf("the %d book price is %d\n",i+1,p[i].price);...原创 2020-02-20 15:54:14 · 739 阅读 · 0 评论 -
变量的作用域与生存期
一、作用域1.块:用一对花括号括起来的代码区域。2.块内定义的变量的作用域从定义处到包含该定义的块的末尾。int loop(int n){ int m;//m的作用域 scanf("%d",&m); { int i;//m和i的作用域 for(i=m;i<n;i++) { prin...原创 2020-02-20 14:31:06 · 202 阅读 · 0 评论 -
利用Typedef简化结构体的使用
#include<stdio.h>#include<stdlib.h>#define size 3typedef struct{ int number;}time;typedef struct{ time day; time month; time year;}date;void input(date*p);void...原创 2020-02-18 21:24:33 · 151 阅读 · 0 评论 -
结构嵌套结构的使用
#include<stdio.h>#include<stdlib.h>#define size 3struct time{ int number;};struct date{ struct time day; struct time month; struct time year;};void input(struct...原创 2020-02-18 20:44:40 · 1648 阅读 · 0 评论 -
结构体数组与结构体数组指针
#include<stdio.h>#define num 3struct date{ int day; int month; int year;};void input(struct date*);void output(struct date*);int main(){ struct date times[num]; i...原创 2020-02-18 15:40:10 · 296 阅读 · 0 评论