Generation

generate functionTue, 15 Nov 2022

test if array is empty

bool isEmpty(int input[]) { if (sizeof(input) == 0) { return true; } else { return false; } }

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