ltoa in c

Solutions on MaxInterview for ltoa in c by the best coders in the world

showing results for - "ltoa in c"
Emanuele
16 Mar 2017
1ltoa() function in C language converts long data type to string data type.
2Syntax for ltoa() function is given below.
3
4------------------------------------------------------
5    
6    char *ltoa(long N, char *str, int base);