Generation

generate functionTue, 03 Jan 2023

Add two numbers and return them

int add(int a, int b) { return a + b; } int main() { int result = add(1, 2); }

Want to kickstart your project?Use the new AI Studio to create your code