Page MenuHomePhorge

mathlib.c
No OneTemporary

Size
284 B
Referenced Files
None
Subscribers
None

mathlib.c

#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

Mime Type
text/x-c
Expires
Fri, Mar 27, 8:46 PM (1 d, 16 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
513136
Default Alt Text
mathlib.c (284 B)

Event Timeline