Recent content by cfury

  1. C

    cxx,gcc, or any other c compiler

    the a.out file is the name of the binary that cc generates if you don't specify one. try this: cc <i>yourfile.c</i> -o <i>binaryname</i> then you'll see that cc generates a binary file named <i>binaryname</i> instead of a.out. Good luck! Chris
Back
Top