This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

converting types

hi Forum,

how can i convert items in a Array from typ Char[] in an Integer-Type?

example:
char data[] = "110111";
int sum = 0;

sum = (int)data;

or should i sum the all items in the array bitwise?

0