

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How do I convert a char to an int in C and C++?
In C language, there are three methods to convert a char type variable to an int. These are given as follows −
- sscanf()
- atoi()
- Typecasting
Here is an example of converting char to int in C language,
Example
#include<stdio.h> #include<stdlib.h> int main() { const char *str = "12345"; char c = 's'; int x, y, z; sscanf(str, "%d", &x); // Using sscanf printf("\nThe value of x : %d", x); y = atoi(str); // Using atoi() printf("\nThe value of y : %d", y); z = (int)(c); // Using typecasting printf("\nThe value of z : %d", z); return 0; }
Output
Here is the output:
The value of x : 12345 The value of y : 12345 The value of z : 115
In C++ language, there are two following methods to convert a char type variable into an int −
- stoi()
- Typecasting
Here is an example of converting char to int in C++ language,
Example
#include <iostream> #include <string> using namespace std; int main() { char s1[] = "45"; char c = 's'; int x = stoi(s1); cout << "The value of x : " << x; int y = (int)(c); cout << "\nThe value of y : " << y; return 0; }
Output
Here is the output
The value of x : 45 The value of y : 115
- Related Questions & Answers
- How to convert a single char into an int in C++
- How to convert an std::string to const char* or char* in C++?
- How do I reverse an int array in Java
- How to convert an int to string in C++?
- How to convert a std::string to const char* or char* in C++?
- What should I do? Select int as currency or convert int to currency format in MySql?
- Convert an int to ASCII character in C/C++
- How to convert a Java String to an Int?
- How to convert a String to an int in Java
- How do I convert an integer to binary in JavaScript?
- How do I multiply an unsigned int by -1 on a MySQL SELECT?
- How to convert a string into int in C#?
- How do I convert a string into an integer in JavaScript?
- How to convert string to char array in C++?
- How do I convert a double into a string in C++?
Advertisements