Linux test merged.
This commit is contained in:
15
default_arg.c
Normal file
15
default_arg.c
Normal file
@@ -0,0 +1,15 @@
|
||||
#include <stdio.h>
|
||||
|
||||
void f( int i = 11 )
|
||||
{
|
||||
printf( "%d\n", i );
|
||||
}
|
||||
|
||||
|
||||
int main( void )
|
||||
{
|
||||
f( 12 );
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user