Hi, i am very new to unix/linux/c which i guess is why i am in this predicament.
Anyway, i have just completed a c programme assignmnet and am trying to run it from linux terminal. So far i can create the main programme by
navigating to the folder running gcc myFile.c then doing .a/.out
this then runs my programme from the terminal window. Thats fine, however to test our output out teacher gave us another file - i guess it has certain conditional checks to tets our outputs are correct. On inspection it appears to be a .exe file with the name myFile_ok.exe
to run it i have tried to do the above steps
navigating to the folder doing ./myFile_ok.exe
but i get an error saying myFile_ok : cannot execute binary file
Any ideas how i actually can run this file at all?
Thank you
edit: there is also a make file if that makes answering my question any easier?