Created
April 19, 2022 00:18
-
-
Save webgtx/61304fa842a9120c5089a23604599c63 to your computer and use it in GitHub Desktop.
How to convert string to int. (C)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int main() { | |
const char str = "We do not cares ;)"; | |
return atoi(str); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment