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

📄 dynamicallocone.cpp

📁 tkugukl.rar c++初学者,指正使用例子
💻 CPP
字号:
// This program does not free the memory it allocates.  It is used
// solely to demonstrate the use of the 'new' keyword.

#include <stdio.h>

int *pPointer;

void SomeFunction()
{
	// make pPointer point to a new integer
	pPointer = new int;
	*pPointer = 25;
}

void main()
{
	SomeFunction(); // make pPointer point to something
	printf("Value of *pPointer: %d\n", *pPointer);
}

⌨️ 快捷键说明

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