User profile: Mr Impact

User info
User name:Mr Impact
History
Joined:
Number of posts:37
Latest posts:

Dungeons & Dragons based Project
Wrote this quickly hopefully it helps you. Good night :) [code] #include <iostream> // author: mr i...

Tic Tac Toe 4X4 issue
As AbstractionAnon said. You are using tablero_de_juego[][] when tablero_dejuego is a function and n...

Not sure why errors are thrown
This file contains functions that don't even exist... [code] void checkdup (); void createarray ();...

problem with my code
I just gave you a function to check for collision, of course you need to implement it correctly. How...

Adding a letter in a char Array without duplications
Example of how you can do it with a std::string [code] std::string theWord = { 'p', 'a', 's'...