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

📄 testoverflow.cpp

📁 “网络安全技术实践与代码详解”实例代码
💻 CPP
字号:


#include "stdafx.h"
#include "TestOverflow.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif


CWinApp theApp;

using namespace std;
void TestOverflow(char *buf)
{
	CFile file; 
	CFileException er; 
	if(!file.Open(_T("TestOverflow.txt"),CFile::modeRead,&er)) 
	{ 
		er.ReportError(); 
		return; 
	} 
	
	int x = file.GetLength(); 
	file.Read(buf,x);

}

int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
	int nRetCode = 0;

	// initialize MFC and print and error on failure
	if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0))
	{
		// TODO: change error code to suit your needs
		cerr << _T("Fatal Error: MFC initialization failed") << endl;
		nRetCode = 1;
	}
	else
	{

		char buf[10]; 
		TestOverflow(buf); 
	}

	return nRetCode;
}


⌨️ 快捷键说明

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