Connecting Tech Pros Worldwide Help | Site Map

file in c++

smn smn is offline
Newbie
 
Join Date: Mar 2008
Posts: 1
#1: Mar 18 '08
hello guys
i want to write a code to create a file with a name that chosen by the user like
Expand|Select|Wrap|Line Numbers
  1.  int main()
  2. {
  3.    string name;
  4.   cout<<"enter the file name:";
  5.   cin>>name;
  6.  
  7.   ifstream b (name);
  8.  
  9.  return 0;
  10. }
  11.  
is it possible to do so?
sicarie's Avatar
Moderator
 
Join Date: Nov 2006
Location: USA
Posts: 3,929
#2: Mar 18 '08

re: file in c++


Did you try running that through a compiler?
Reply