I want to convert an int to char * 
char str[10]=;
int i=567;
str=itoa(i, str, 10)
This gives an error on str the third line
str must have a modifiable lvalue
I want to convert an int to char * 
char str[10]=;
int i=567;
str=itoa(i, str, 10)
This gives an error on str the third line
str must have a modifiable lvalue
 
    
     
    
    char str[10]; 
int i=567; 
itoa(i, str, 10);
