C Pointers

Joined
Feb 18, 2009
Messages
1
Reaction score
0
Hi,

if I write the following function

char *copy_strings(char *s1, char *s2)
{
while(*s1)
{
*s2=*s1;
s2++;
s1++;
}
*s2='\0';
return(s2)
}
where s1 is a char array,say char s1[]="abcdef", and s2 is another empty char array

it does not give an error

But if I use integer arrays instead of character arrays it gives an error
L-VALUE REQUIRED.

Can you please explain why
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,065
Latest member
OrderGreenAcreCBD

Latest Threads

Top