Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 18th, 2012  |  syntax: None  |  size: 0.13 KB  |  hits: 5  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #include <stdio.h>
  2.  
  3. void message(void)
  4. {
  5.   printf("Have Fun With Programming!\n");
  6. }
  7.  
  8. int main(void)
  9. {
  10.   message();
  11.  
  12.   return 0;
  13. }