Posted by Anonymous Tue 6th Mar 2007 08:05 - Syntax is None/text - 43 views
Download | New Post | Modify | Hide line numbers
  1. #include
  2. void foo(int x);
  3. int main(void)
  4. {
  5.         int x = 1;
  6.         foo(x);
  7.         return 0;
  8. }
  9. void foo(int x)
  10. {
  11.         printf("%d\n", x);
  12. }
  13.  

PermaLink to this entry https://pastebin.co.uk/11454
Posted by Anonymous Tue 6th Mar 2007 08:05 - Syntax is None/text - 43 views
Download | New Post | Modify | Hide line numbers

 

Comments: 0