0 votes
in C Plus Plus by
How to convert a string to numbers in C?

1 Answer

0 votes
by

In C we have 2 main methods to convert strings to numbers i.e, Using string stream, Using stoi() library Function, and using atoi() library function. 

  • sscanf(): It reads input from a string rather than standard input.
  • atoi() or stoi(): These functions takes a string literal or a character array as an argument and an integer value is returned.

Related questions

0 votes
asked Jan 4 in C Plus Plus by GeorgeBell
0 votes
asked Jan 11 in C Plus Plus by GeorgeBell
...