User profile: vlad from moscow

User info
User name:vlad from moscow
Website:http://cpp.forum24.ru
Bio:You can meet me at http://cpp.forum24.ru
History
Joined:
Number of posts:3105
Latest posts:

Definition type
There is no difference between the parameter declarations [b]char *str[/b] and [b]char str[][/b] be...

Program with Multi-Dimensional Array
It is strange enough that you defined constant size [code]const int size = 12;[/code] and at the s...

Recursion
In fact iteration is the same as recursion but has a condensed form.:)

hw help please
The error message is clear enough. The size of an array shall be a constant expression which value ...

Pointers
[code]#include <iostream> void userNumbers( int *aPtr, int n ) { std::cout << "Please enter your ...