Программы на C++. Форум разработчиков
-
Anonymous
Запись во временный файл
Сообщение
Anonymous »
У меня есть следующая программа на C++:
Код: Выделить всё
#include "stdafx.h"
#include
#include
#include
#include
#include
#include
using namespace std;
string integer_conversion(int num) //Method to convert an integer to a string
{
ostringstream stream;
stream
Подробнее здесь: [url]https://stackoverflow.com/questions/13272889/writing-to-a-temporary-file[/url]
1737384807
Anonymous
У меня есть следующая программа на C++:
[code]#include "stdafx.h"
#include
#include
#include
#include
#include
#include
using namespace std;
string integer_conversion(int num) //Method to convert an integer to a string
{
ostringstream stream;
stream
Подробнее здесь: [url]https://stackoverflow.com/questions/13272889/writing-to-a-temporary-file[/url]