Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2936452
mathlib.c
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
284 B
Referenced Files
None
Subscribers
None
mathlib.c
View Options
#include
<stdio.h>
int
add
(
int
a
,
int
b
)
{
return
a
+
b
;
}
int
multiply
(
int
a
,
int
b
)
{
return
a
*
b
;
}
void
greet
(
const
char
*
name
)
{
printf
(
"Hello, %s!
\n
"
,
name
);
}
double
divide
(
double
a
,
double
b
)
{
if
(
b
!=
0.0
)
{
return
a
/
b
;
}
return
0.0
;
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Sat, Mar 28, 2:52 AM (1 d, 16 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
513136
Default Alt Text
mathlib.c (284 B)
Attached To
Mode
rANT Ant
Attached
Detach File
Event Timeline
Log In to Comment