C语言malloc函数的使用!malloc函数的作用:动态内存分配函数,用来向系统请求分配内存空间

malloc函数的作用:动态内存分配函数,用来向系统请求分配内存空间

#include
#include
int main(){
	int *ptr;
	ptr=(int*)malloc(sizeof(int));
	scanf("%d",ptr);
	printf("你输入的是:%d",*ptr);
	return 0;
	
} 

你可能感兴趣的:(C语言,c语言,算法,malloc,动态规划)