User profile: R0mai

User info
User name:R0mai
Location:Nagykovácsi, Hungary
Statistical data
Birthdate:Apr 14, 1992
Gender:Male
Occupation:Programmer
Skills:C
C++
Java
History
Joined:
Number of posts:730
Latest posts:

What build tool do you use?
I recommend Tup ( http://gittup.org/tup/ ).

Pointers to functions with unknown arguments?
This hack comes into my mind. Of course, you always have to know the signature of the function the p...

Does ctrl-c clear variables?
C++ objects rely on RAII* to clean up after themselves, but according to this article, destructors a...

C++ Two Dimensional Prime Numbers
http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes

argc, argv[]
You can easily pass the program arguments to other functions: [code] void f(int argc, char **argv)...