Hey guys I started to run a C++ my program in Linux and I don't know how to test my program that works fine with a text file. This is a project for my uni and to explain more clear, My program is a sample database for modify or add and search and it read data from a binary file and also write into a binary file.
I have got an input from my lecture and she said after compiling in Linux I must
write:
1-to compile:
Code:
g++ (files with cpp)
2-to see the output:
3-to test with input:
Code:
./a.out < input.txt >
My problem is in step three.could you please write exactly what I must write in the command part after" step2" to see the output?