#include <strings.h>
void bzero(void *s, size_t n);
#include <stdio.h>
#include <string.h>
struct member {
int a;
char b;
double c;
};
int main()
{
struct member myhome;
bzero(&myhome, sizeof(myhome));
return 0;
}
欢迎光临 曲径通幽论坛 (http://www.groad.net/bbs/) | Powered by Discuz! X3.2 |