A
Allen Maki
//Hi everybody,
//I need your help.
//If I run this program I will get an 'L'.
//But I want to get the real number (76).
//Can anybody tell me what to do?
#include "stdafx.h"
#using <mscorlib.dll>
using namespace System;
using namespace System::IO;
int _tmain()
{
FileStream* fs = new FileStream(S"bar.txt", FileMode::Create);
BinaryWriter* bw = new BinaryWriter(fs);
bw->Write(76);
return 0;
}
//I need your help.
//If I run this program I will get an 'L'.
//But I want to get the real number (76).
//Can anybody tell me what to do?
#include "stdafx.h"
#using <mscorlib.dll>
using namespace System;
using namespace System::IO;
int _tmain()
{
FileStream* fs = new FileStream(S"bar.txt", FileMode::Create);
BinaryWriter* bw = new BinaryWriter(fs);
bw->Write(76);
return 0;
}