void Sort(string [][2],int,char direction='A');


What does the char direction = 'A' mean?

It means that the variable direction is default initialized with the character 'A', if you don't pass a character as an argument to the function.

If you do, it replaces that value with the one the caller (you) provided.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.