What is the equivalent of C# Convert.ToInt16(String) in C

1 Answer

0 votes
// int atoi(const char *str)

#include <stdio.h>
#include <stdlib.h> 

int main(void)
{
    char str[] = "97458";
    
    int n = atoi(str);
    
    printf("%d", n);
    
    return 0;
}
  
  
  
   
/*
run:
     
97458
  
*/

 



answered Mar 31, 2024 by avibootz

Related questions

1 answer 123 views
123 views asked Aug 27, 2022 by avibootz
1 answer 156 views
1 answer 84 views
1 answer 140 views
1 answer 129 views
129 views asked Aug 9, 2023 by avibootz
1 answer 263 views
1 answer 310 views
310 views asked Feb 9, 2019 by avibootz
...