can some one give me some hints on how to convert command line arguments to long int's?
Skeptic
This is a discussion on command line agr within the C++ Programming forums, part of the General Programming Boards category; can some one give me some hints on how to convert command line arguments to long int's? Skeptic...
can some one give me some hints on how to convert command line arguments to long int's?
Skeptic
long int atol(char* arg) //(array to long)
Converts an array into a long int.
It is located in stdlib.h
MagosX.com
Give a man a fish and you feed him for a day.
Teach a man to fish and you feed him for a lifetime.
thanks for the help, much need![]()