views:

40

answers:

1

I've created a C++ project in Eclipse and currently it builds an executable called file.exe but I want to change this to "file".

How do I do this?

Thanks.

A: 

You cannot remove the .exe from the filename, because windows uses this to determine the file type, and be removing the .exe, then it will not know that the file is an executable.

Alexander Rafferty
I seldom use Windows from command line, one of the times I do that is when I need to run "ipconfig". I found that I could run `ipconfig` as well as `ipconfig.exe`.
ArunSaha