For example, what is the difference between:
strucut Nodo{
Nodo *siguiente,*anterior;
char* Nombre,Curso;
long,carnet;
Nodo(){
siguiente=anterior=NULL;
}
and:
class Nodo{
public:
Nodo *siguiente,*anterior;
char* Nombre,Curso;
long carnet;
Nodo(){
siguiente=anterior=NULL;
}
A difference that i think i saw was that in class you must put public, or in other hand all the statements will be private, but i can“t see any important difference, or any crusial difference. There are some important aspect that i dont know?