mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 09:23:52 -05:00
8 lines
128 B
Plaintext
8 lines
128 B
Plaintext
// Type your code here, or load an example.
|
|
int square(int num) {
|
|
return num * num;
|
|
}
|
|
|
|
int main() {
|
|
return square(2);
|
|
} |