Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
4
Task/Function-definition/C/function-definition-1.c
Normal file
4
Task/Function-definition/C/function-definition-1.c
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
double multiply(double a, double b)
|
||||
{
|
||||
return a * b;
|
||||
}
|
||||
1
Task/Function-definition/C/function-definition-2.c
Normal file
1
Task/Function-definition/C/function-definition-2.c
Normal file
|
|
@ -0,0 +1 @@
|
|||
#define MULTIPLY(X, Y) ((X) * (Y))
|
||||
1
Task/Function-definition/C/function-definition-3.c
Normal file
1
Task/Function-definition/C/function-definition-3.c
Normal file
|
|
@ -0,0 +1 @@
|
|||
x = MULTIPLY(x + z, y);
|
||||
1
Task/Function-definition/C/function-definition-4.c
Normal file
1
Task/Function-definition/C/function-definition-4.c
Normal file
|
|
@ -0,0 +1 @@
|
|||
x = ((x + z) * (y));
|
||||
Loading…
Add table
Add a link
Reference in a new issue