Answers for "c++ refrence string to int"

C++
3

string to int in c++

#include <iostream>
#include <string>
using namespace std;
int main() {
 
    string s = "10";
 
    try
    {
        int i = stoi(s);
        cout << i << 'n';
    }
    catch (invalid_argument const &e)
    {
        cout << "Bad input: std::invalid_argument thrown" << 'n';
    }
    catch (out_of_range const &e)
    {
        cout << "Integer overflow: std::out_of_range thrown" << 'n';
    }
 
    return 0;
}
Posted by: Guest on December-10-2020
-3

string to int c++

let endpoints = [
  'https://api.github.com/users/ejirocodes',
  'https://api.github.com/users/ejirocodes/repos',
  'https://api.github.com/users/ejirocodes/followers',
  'https://api.github.com/users/ejirocodes/following'
];

// Return our response in the allData variable as an array
Promise.all(endpoints.map((endpoint) => axios.get(endpoint))).then(
  axios.spread((...allData) => {
    console.log({ allData });
  })
);
Posted by: Guest on December-22-2021

Browse Popular Code Answers by Language