convert string to number c++
#include <iostream>
#include <sstream>
using namespace std;
int main()
{
string str = "123456";
int n;
stringstream ( str ) >> n;
cout << n; //Output:123456
return 0;
}
convert string to number c++
#include <iostream>
#include <sstream>
using namespace std;
int main()
{
string str = "123456";
int n;
stringstream ( str ) >> n;
cout << n; //Output:123456
return 0;
}
string to decimal c++ strtol
char hex[] = "6A"; // here is the hex string
int num = (int)strtol(hex, NULL, 16); // number base 16
printf("%c\n", num); // print it as a char
printf("%d\n", num); // print it as decimal
printf("%X\n", num); // print it back as hex
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us