fork download
  1. #include <stdio.h>
  2. /* function main begins program execution */
  3. int main()
  4. {
  5. printf( "Welcome to C!\n" );
  6. return 0; /* indicate that program ended successfully */
  7. } /* end function main */
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
Welcome to C!