So I want store an array named buffer into an array into an array called first_line That is what I tried:
first_line = buffer;
It's obvisly that this does not work. I know that an array has many parts but how do I store it all together in one variable?
I'm a totally beginner in C and dont know what I am doing could someone help me?
bufferarray storeschars. Then it would be of typechar []. If you want to store an array ofchar [], then that array would be of typechar *[]. Provide some code and we can help ensure you allocate memory for these types correctly.