Where can I get a list of all the C functions such as
strcpy strcmp etc etc.?
Printable View
Where can I get a list of all the C functions such as
strcpy strcmp etc etc.?
It's all documented in MSDN: http://msdn.microsoft.com/library
Thanks parksie
Parksie im looking there now and I cant find a list of all the functions, only how to call them in code?
Im looking for C functions. ( not c++)
Take a look at the help files shipped with your compiler.
C functions can be used from C++ and vice-versa.Quote:
Originally posted by Help
Parksie im looking there now and I cant find a list of all the functions, only how to call them in code?
Im looking for C functions. ( not c++)
Although there are some caveats to calling C++ code from C :(