Is there a way to cast a the contents of a char* buffer into an int?

Recommended Answers

All 2 Replies

char buf[100];
int i;

strcpy(buf, "foo");

i = atoi(buf);

that?

WOW!! atoi, i totally spaced on that. Thanks alot (im not being sarcastice, i just feel like a moron) Thanks.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.