#include<stdio.h>
#include<stdlib.h>
class mt{
int m;
};
mt *add(){
mt *b;
b = (mt *)malloc(sizeof(*b));
return b;
}
void main(){
mt *m=add();
}
学习1
最新推荐文章于 2024-09-11 15:54:13 发布
#include<stdio.h>
#include<stdlib.h>
class mt{
int m;
};
mt *add(){
mt *b;
b = (mt *)malloc(sizeof(*b));
return b;
}
void main(){
mt *m=add();
}