由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 一个极简单的程序求教
相关主题
问个简单的memory allocation 的问题。谁帮我解释一下这个代码
New C++ programmer, need to ask a I/O file read question能帮忙看看这个字符串的操作问题吗?
strcat()关于 exception 的一个问题
C++ STL map find does not work ???请帮忙看看这个字符函数的错误在哪里
C pass string 问题问个char*的问题
Another question请教一个C里面string copy的问题
weird outputWhat is wrong with the constructor calling?
Array in CC程序的异常输出
相关话题的讨论汇总
话题: include话题: argv话题: file话题: name话题: ofstream
进入Programming版参与讨论
1 (共1页)
s*****n
发帖数: 1279
1
以前用C++都是在interpreter的环境下,现在想编译,发现好多都不懂。大家帮我看看下
面这个程序:
#include
#include
#include
#include
#include
int main (int argc, char **argv)
{
int iarg = 1;
char root_file_name[256];
strcpy (single_file_name,argv[1]);
strcpy (root_file_name, argv[2]);

ofstream decayresults(root_file_name);
decayresults.close();
cout<<"That's all"<
}//end of main
然后我用下面的Makefile编译总是通不过,说是ofstream,cout, endl 都没有定义。难
道不是只要include ,
N*********y
发帖数: 105
2
Don't play with him. Give him an answer.
put "using namespace std;" after includes.
1 (共1页)
进入Programming版参与讨论
相关主题
C程序的异常输出C pass string 问题
a c++ question.Another question
请问strcpy()和memcpy()的写法问题  (转载)weird output
一道笔试题Array in C
问个简单的memory allocation 的问题。谁帮我解释一下这个代码
New C++ programmer, need to ask a I/O file read question能帮忙看看这个字符串的操作问题吗?
strcat()关于 exception 的一个问题
C++ STL map find does not work ???请帮忙看看这个字符函数的错误在哪里
相关话题的讨论汇总
话题: include话题: argv话题: file话题: name话题: ofstream