我是靠谱客的博主 无情秋天,最近开发中收集的这篇文章主要介绍数组循环存储覆盖,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

结构体赋值

#include <stdio.h>
#include <string.h>

typedef struct
{
	int num;
	char name[6];
	short height;
} STR_STU; 
int main()
{
	STR_STU xm = {0};
	STR_STU xh = {0};
	xm.num = 1000;
	xm.height = 169;
	memcpy(xm.name,"ad",4);
	printf("xm's big name: %sn",xm.name);
	xh = xm;
	printf("xh's big name: %sn",xh.name);
	printf("xh's num: %dn",xh.num);
	printf("struct.size: %dn",sizeof(xh));
	memset(&xh,0,sizeof(xh));
	printf("xh's big name: %sn",xh.name);
	printf("xh's num: %dn",xh.num);
	return 0;
}

循环

#include <stdio.h>
#include <string.h>

#define arraycap 20
typedef struct 
{
	int data[arraycap];
	short front;
	short count;
	//short rear;
} FOR_ARRAY;
FOR_ARRAY g_array={0};

void show() {for(int i=0;i<arraycap;++i)  printf("%d  ",g_array.data[i]);printf("n"); }
void insert(int num)
{
	short *count = &(g_array.count);
	short *front =&(g_array.front);
	printf("front:%dn",*front);
	printf("count:%dn",*count);
	if(*count == arraycap)
	{
		g_array.data[*front] = num;
		(*front)++;
		if(*front>=arraycap) *front = 0;
	}else
	{
		g_array.data[*count]= num;
		(*count)++;
	}
}

int main()
{
	for(int i=1;i<25;++i)
	{
		insert(i);
		show();
	}
	return 0;
}












最后

以上就是无情秋天为你收集整理的数组循环存储覆盖的全部内容,希望文章能够帮你解决数组循环存储覆盖所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部