Create and Compile C Program in Unix and Linux 2011

Create and Compile C Program in Unix and Linux 2011
These are basic steps to create and compile C program in Unix and Linux
  1. First Create one C Program like " Simple Hello Word Program in C".
  2. Save These C Program in "Helloword.c" make to Compile.
  3. To Compile any C Program in Linux or Unix you need a C Compiler. Like Turbo C For Windows but here We user "Gcc Compiler" for To Compile C Program in Unix and Linux.
  4. if you to Compile C Program use " cc Helloword.c" and once successfully compiled then Build output
  5. if you want to see Output of that Program use ". /a.out" then see the output.