-
#include
-
void foo(int x);
-
int main(void)
-
{
-
int x = 1;
-
foo(x);
-
return 0;
-
}
-
void foo(int x)
-
{
-
printf("%d\n", x);
-
}
-
Posted by Anonymous Tue 6th Mar 2007 08:05 - Syntax is None/text - 43 views
Download | New Post | Modify | Hide line numbers
Download | New Post | Modify | Hide line numbers
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
Download | New Post | Modify | Hide line numbers
Comments: 0