User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







c:stdlib.h:atol

Table of Contents

atol

    #include <stdlib.h>
     long int atol(const char *str); 

convert a string to long integer

C Sourcecode Example

#include <stdio.h> /* including standard library */
//#include <windows.h> /* uncomment this for Windows */
 
#include <stdlib.h>
 
int main(void){
 
    char string[]="1234";
    long int  i;
 
printf("string = %s \n", string );
printf("int = %li \n", atol(string) );
 
i = atol(string);
i = i + i;
printf("i + i = %li\n", i);
 
return 0;
}

Output

  Output:
  user@host:~$  ./atol 
  string = 1234 
  int = 1234 
  i + i = 2468

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/stdlib.h/atol.txt · Last modified: 2024/02/16 01:04 (external edit)

Impressum Datenschutz