User profile: Karql

User info
User name:Karql
History
Joined:
Number of posts:17
Latest posts:

A problem about function definition
This is a constructor inicialization list. This means: [code]CSourceLine( unsigned int lineNr ...

Sorting an array in ascending order
http://en.wikipedia.org/wiki/Sorting_algorithm Look at: - Bubble sort - Selection sort - Inser...

Doesn't recognize string
@Mythios: It was my knowledge of english fault. I wrote "all", there should be "whole".

How to display BST tree?
Please: [code] void display(wezel *p_root) { if ( p_root != NULL ) { ...

Problem with integer array
If you want without string. [code]#include <iostream> using namespace std; int main() { ...