Generation

generate functionWed, 19 Apr 2023

Create a structure

struct testStruct { int x; int y; }; int main() { struct testStruct struct1; struct1.x = 5; struct1.y = 10; return 1; }

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