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:4921
Latest posts:

First Non-Repeating character
if ((checker & (1 << val)) > 0) { printf("String contains duplicate character %c\n", str[i] ); re...

Can't pass to functions with pointer
For example you can write the following way int main () { int exit = 0; do { [b]double mi = 0, ...

Vector Iterator not incrementable
If it is a run-time error then its reason is that you are trying to increase the iterator equal to e...

Meaning of expressions like"%d" in c++
It is [quote]a conversion specifier character that specifies the type of conversion to be applied. d...

Problem in the last part of question !!!!!
int sum2 = 0; for(int h = 0; h < [b]count[/b]; h++) { sum2 += valu2[h]; } int average2 = sum2 /...