User profile: majidkamali1370

User info
User name:majidkamali1370
Name:Majid
Location:Tehran
Bio:I know a little turbo c++ 4.5
I want to know more.
History
Joined:
Number of posts:238
Latest posts:

How to convert string to double without changing actual data
stringstream is another way of converting strings to numbers and vice versa.

autocomplete from dictionary file
Look at "bash-completion" source code. It is written in C and it is from GNU project.

which makes faster code? if's or switch?
If you are using GCC, use -S option to see switch and if else blocks in assembly language. Then chec...

Graph related problem.
http://en.wikipedia.org/wiki/Graph_%28abstract_data_type%29 Adjacency lists are preffered if you wa...

Thread Implementation
[quote] also needs -pthread with gcc (or you could use boost if you don't have a C++ compiler that s...