File Stream C++ Tutorial

#include  
#include  
using namespace std; 
 
int main() 

  char *p = "hello\n"; 
 
  ofstream out("test", ios::out | ios::binary); 
  if(!out) { 
    cout << "Cannot open file.\n"; 
    return 1; 
   } 
 
  // Write characters until the null-terminator is reached. 
  while(*p) 
     out.put(*p++); 
 
  out.close(); 
 
  return 0; 
}