এই টিউটোরিয়ালে, আমরা C/C++-এ স্ট্রিংকে সংখ্যায় রূপান্তর করার উপায় বোঝার জন্য একটি প্রোগ্রাম নিয়ে আলোচনা করব।
C/C++ স্ট্রিংকে সংখ্যায় রূপান্তর করার দুটি উপায় প্রদান করে।
উদাহরণ
sscanf() ব্যবহার করা
#include<stdio.h>
int main(){
const char *str = "12345";
int x;
sscanf(str, "%d", &x);
printf("\nThe value of x : %d", x);
return 0;
} আউটপুট
The value of x : 12345
stoi() ব্যবহার করা
#include <iostream>
#include <string>
using namespace std;
int main(){
string str1 = "45";
string str2 = "3.14159";
string str3 = "31337 geek";
int myint1 = stoi(str1);
int myint2 = stoi(str2);
int myint3 = stoi(str3);
cout << "stoi(\"" << str1 << "\") is " << myint1 << '\n';
cout << "stoi(\"" << str2 << "\") is "<< myint2 << '\n';
cout << "stoi(\"" << str3 << "\") is "<< myint3 << '\n';
return 0;
} আউটপুট
stoi("45") is 45
stoi("3.14159") is 3
stoi("31337 geek") is 31337