Please examine following code :
#include <iostream>
#include <string>
#include <fstream>
int main()
{
char mybuffer[512];
std::filebuf* optr = new std::filebuf();
optr->pubsetbuf(mybuffer, 512);
const char sentence[] = "Sample sentence";
auto ptr = optr->open("bd.bin", std::ios::binary | std::ios::trunc | std::ios::out);
if (ptr) {
float fx = 13;
auto n = optr->sputn(sentence, sizeof(sentence) - 1);
n += optr->sputn(reinterpret_cast<const char*>(&fx), sizeof(fx));
optr->pubsync();
}
optr->close();
if(optr) { delete optr; }
return 0;
}
After run this program no data has been written in to the file whilesputn
-> n
is returning valid amount of writtne characters(verified through debugging).
You code runs fine on my system, producing a
bd.bin
with 19 characters.Are you sure this is exactly what you built and ran? Perhaps you're using a problematic compiler, or you're out of disk space or something.