Differences between int/char arrays/strings

arrays, c, char, int, string

Solution

To elaborate on WhozCraig's answer, the trouble you are having does not have to do with strings, but with the individual characters.

Strings in C are stored by and large as arrays of characters (with the caveat that there exists a null terminator at the end).

The characters themselves are encoded in a system called ascii which assigns codes between 0 - 127 for characters used in the english language (only). Thus "7" is not stored as 7 but as the ascii encoding of 7 which is 55.

I think now you can see why your product got so large.

One elegant way to fix would be to convert

int num = (int) str[n];

to

int num = str[n] - '0';  
//thanks for fixing, ' '  is used for characters, " " is used for strings

This solution subtracts the ascii code for 0 from the ascii code for your character, say "7". Since the numbers are encoded linearly, this will work (for single digit numbers). For larger numbers, you should use atoi or strtol from `stdlib.h`

Problem

I'm still new to the forum so I apologize in advance for forum - etiquette issues. I'm having trouble understanding the differences between `int` arrays and `char` arrays. I recently wrote a program for a Project Euler problem that originally used a `char` array to store a string of numbers, and later called specific characters and tried to use `int` operations on them to find a product. When I used a char string I got a ridiculously large product, clearly incorrect. Even if I converted what I thought would be compiled as a character (`str[n]`) to an integer in-line (`(int)str[n]`) it did the exact same thing. Only when I actually used an integer array did it work. Code is as follows for the `char` string ``` char str[21] = "73167176531330624919"; ``` This did not work. I got an answer of about 1.5 trillion for an answer that should have been about 40k. for the `int` array ``` int str[] = {7,3,1,6,7,1,7,6,5,3,1,3,3,0,6,2,4,9,1,9}; ``` This is what did work. I took off the in-line type casting too. Any explanation as to why these things worked/did not work and anything that can lead to a better understanding of these ideas will be appreciated. Links to helpful stuff are as well. I have researched strings and arrays and pointers plenty on my own (I'm self taught as I'm in high school) but the concepts are still confusing. Side question, are strings in C automatically stored as arrays or is it just possible to do so?

Original source

Related problems