prog.cpp: In function 'void Insert(Nodo*, int)':
prog.cpp:18:36: error: cannot convert 'Nodo**' to 'Nodo*' for argument '1' to 'void Insert(Nodo*, int)'
Insert(&(root)->left, x);
^
prog.cpp:20:37: error: cannot convert 'Nodo**' to 'Nodo*' for argument '1' to 'void Insert(Nodo*, int)'
Insert(&(root)->right, x);
^