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

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...

Thread Implementation
compile above code with -std=c++0x option. [code]g++ AboveProgram.cpp -std=c++0x[/code] If you are ...