Forum: C Nov 17th, 2007 |
| Replies: 6 Views: 1,500 how to write an optimized version of the following factorial recursion function in C along with some explanation please ??
int factorial(int num)
{
if (num == 0) return 1;
else return num *... |
Forum: C++ Apr 2nd, 2007 |
| Replies: 24 Views: 61,935 Few Interesting & Challenging programming problems :
http://c4swimmers.net/portal/node/9 (http://c4swimmers.net/portal/node/9)
Level: Beginners or Newbie C/C++ Programmers |
Forum: C++ Apr 2nd, 2007 |
| Replies: 54 Views: 82,075 Huge collection of eBooks on C/C++ can be found here:
http://c4swimmers.net/portal/Huge_collection_of_eBooks_on_C_CPP (http://c4swimmers.net/portal/Huge_collection_of_eBooks_on_C_CPP)
Good... |