Тема: Проблема з файлом
Зчитати дані з файлу та вивести його вміст на екран у 16 коді...
ось код: все ніби впорядку але вміст не переводить в 16 код за допомогою маніпулятора hex (С++)
#include <fstream>
#include "stdafx.h"
#include <iostream>
using namespace std;
int main(array<System::String ^> ^args)
{
char ch[50];
ifstream file ("C:\\task.txt");
while (!file.eof())
{
file.getline(ch, sizeof(ch));
cout << hex << ch << "\n" << endl;
}
file.close();
cin.get();
cin.get();
return 0;
}
Hanter: Код слід брати у теги code
Поможіть...