Question: 6 . ( 1 0 points ) Please identify and explain all the errors in the following C code. 1 . int main ( int

6.(10 points) Please identify and explain all the errors in the following C code. 1. int main(int argc, char* argv[]){2. char source[10]; 3. strcpy(source,"0123456789"); 4. char *dest =(char *)malloc(strlen(source)); 5. for (int i=1; i <=11; i++){6. dest[i]= source[i]; 7.}8. dest[i]='\0'; 9. printf("dest =%s", dest); 10.}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!