#How can I optimize & made my code better

5 messages · Page 1 of 1 (latest)

storm prismBOT
#

When your question is answered use !solved to mark the question as resolved.

Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question use !howto ask.

spiral oasis
#

one second I forgot to put in code

#
#include <iostream>
#include "include/board.h"
// Tic Tac Toe



int main() {

board e(std::array<char, 9>{'-', '-', '-', '-', '-', '-', '-', '-', '-'});


};
storm prismBOT
#

@spiral oasis

It looks like you may have code formatting errors in your message

Note: Make sure to use back-ticks (`) and not quotes (')
Note: Make sure to specify a highlighting language, e.g. `cpp`, after the back-ticks

Markup

```cpp
int main() {}
```

Result
int main() {}
spiral oasis
#

#include <iostream>
#include "include/board.h"
// Tic Tac Toe



int main() {

board e(std::array<char, 9>{'-', '-', '-', '-', '-', '-', '-', '-', '-'});


};