Reorganizing some files.

This commit is contained in:
2015-02-08 23:37:56 +04:00
parent 7a53e5a3a1
commit 12af9d1b7f
22 changed files with 0 additions and 270 deletions

15
c/default_arg.c Normal file
View File

@@ -0,0 +1,15 @@
#include <stdio.h>
void f( int i = 11 )
{
printf( "%d\n", i );
}
int main( void )
{
f( 12 );
return 0;
}