View Single Post
  #8 (permalink)  
Old December 16th, 2005, 12:19 PM
vector vector is offline
Authorized User
 
Join Date: Nov 2005
Posts: 23
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Replace C headers with C++ one's
Code:
C headers                   C++ headers
-------------------------------------------
#include <assert.h>         #include <cassert>
#include <stdlib.h>         #include <cstdlib>
#include <time.h>           #include <ctime>
why in this world are u using two main() in the code
Reply With Quote