Skip to content

Instantly share code, notes, and snippets.

@webgtx
Created April 19, 2022 00:18
Show Gist options
  • Save webgtx/61304fa842a9120c5089a23604599c63 to your computer and use it in GitHub Desktop.
Save webgtx/61304fa842a9120c5089a23604599c63 to your computer and use it in GitHub Desktop.
How to convert string to int. (C)
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