Untitled
Anonymous
c_cpp
07/23/2024 8:36 AM
444 B
22
Indexable
#include <fstream>
#include <iostream>
int main()
{
std::fstream plik( "example.txt", std::ios::in );
plik.seekg( 2, std::ios_base::end );
if( plik.fill() )
{
std::cout << "Error: Nie udalo sie przesunac wewnetrznego wskanizka pliku" << std::endl;
}
plik.close();
return 0;
}
Editor is loading...
Leave a Comment