Forrest logo
back to context overview

c99

List of commands for c99:

  • c99:tldr:06257 c99: Compile source file(s) and create an executable with a custom name.
    $ c99 -o ${executable_name} ${file-c}
    try on your machine
    explain this command
  • c99:tldr:34b12 c99: Compile source file(s), link with object file(s), and create an executable.
    $ c99 ${file-c} ${file-o}
    try on your machine
    explain this command
  • c99:tldr:a8027 c99: Compile source file(s) and create object file(s).
    $ c99 -c ${file-c}
    try on your machine
    explain this command
back to context overview