⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 malloc.cpp

📁 it is a simualtion of a game
💻 CPP
字号:
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
typedef struct
{
int x;
float y;
char q;
}node;
int main()
{
clrscr();
int x;
node*ptr;
printf ("%d\n",sizeof(x));
printf ("%d\n",sizeof(node));
ptr=(node*)malloc(sizeof(node));
printf ("%p",ptr);
getch();
return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -