Linux test merged.

This commit is contained in:
Vahagn Khachatryan
2013-02-22 23:48:24 +04:00
parent 16f2ae5f57
commit a730bde647
16 changed files with 747 additions and 269 deletions

15
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;
}