File C++

#include 
#include 
#include 
using namespace std;
int main()
{
  ofstream out("test", ios::out | ios::binary);
  if(!out) {
    cout << "Cannot open output file.\n";
    return 1;
  }
  double num = 100.45;
  char str[] = "www.rntsoft.com";
  out.write((char *) &num, sizeof(double));
  out.write(str, strlen(str));
  out.close();
  return 0;
}