Answers for "atoi c++"

C++
3

atoi c++

Parses the C-string str interpreting its content as an integral number

If the converted value would be out of the range of representable
values by an int, it causes undefined behavior.

/* atoi example */
#include <stdio.h>      /* printf, fgets */
#include <stdlib.h>     /* atoi */

int main ()
{
  int i;
  char buffer[256];

  printf ("Enter a number: ");
  fgets (buffer, 256, stdin);
  i = atoi (buffer);
  printf ("The value entered is %d. Its double is %d.\n",i,i*2);
  return 0;
}

	
/* Output */

Enter a number: 73
The value entered is 73. Its double is 146.
Posted by: Guest on May-12-2021
6

atoi c

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

//CONVERT STRING TO INT

int main () {
   int val;
   char str[20];
   
   strcpy(str, "98993489");
   val = atoi(str);
   printf("String value = %s, Int value = %d\n", str, val);

   strcpy(str, "tutorialspoint.com");
   val = atoi(str);
   printf("String value = %s, Int value = %d\n", str, val);

   return(0);
}
Posted by: Guest on February-20-2020

Browse Popular Code Answers by Language