首页 > 代码库 > C/C++ 获取代码执行的行数以及文件名

C/C++ 获取代码执行的行数以及文件名

#include <iostream>
#include <string>
using namespace std;

 

void _tmain(int argc, TCHAR *argv[])
{

int line = __LINE__;
string filename = __FILE__;

cout<<"the line is:"<<line<<endl;
cout<<"the filename is :"<<filename<<endl;

system("pause");


}