Tapas Bose's Contributions
Below are the tutorials, code snippets, and resources Tapas Bose has submitted to dream.in.code. For more information on Kudos and contributing to dream.in.code visit: http://home.dreamincode.net/?p=about#kudos.
Tutorials
C++ STL Multimap - Part - 1 in C++ Tutorials (Last Comment: Tapas Bose, Views: 8,295)
C++ STL Multimap - Part - 2 in C++ Tutorials (Last Comment: Tapas Bose, Views: 4,107)
Code Snippets
Submitted: March 28, 2010        Views: 1398
This code generate all possible factorizations of a given number including its proper divisor in order.
Submitted: April 9, 2010        Views: 3674
This code help to get time in millisecond format. You can use it to find execution time of a program in ms.
Submitted: March 6, 2011        Views: 839
The following shell script computes the row and column sum for each row and column of a matrix taking input from user
Submitted: January 24, 2011        Views: 2046
Implementation of the algorithm Sieve Of Eratosthenes
Submitted: April 9, 2010        Views: 1892
If someone want to check some live status every x seconds then he/she can use this code. sleep() function is not the proper way to achieve this, because the programs might process other things within that x seconds. So we need a non-blocking timer function for that.
Submitted: April 9, 2010        Views: 1007
This code helps to generate all prime numbers below a given limit.