maorben241
maorben241

Reputation: 31

warning: implicit declaration of function ‘strcpy’ [-Wimplicit-function-declaration] the program work but how i fix the compiler error

struct student * createStudent(char studentName[],int studentAge){
struct student * ptr;
ptr= (struct student *)malloc(sizeof(struct student));
strcpy(ptr->name,studentName);
ptr->age=studentAge;
ptr->next=NULL;

return ptr;

}

Compilation result : 60663645638018396.c: In function ‘createStudent’: 60663645638018396.c:46:5: warning: implicit declaration of function ‘strcpy’ [-Wimplicit-function-declaration] strcpy(ptr->name,studentName); ^ 60663645638018396.c:46:5: warning: incompatible implicit declaration of built-in function ‘strcpy’

the program is working but i dont understand what is the compile error.

Upvotes: 3

Views: 8006

Answers (1)

MikeCAT
MikeCAT

Reputation: 75062

strcpy() is declared in the header string.h.

Add

#include <string.h>

to the beginning of your code.

Upvotes: 8

Related Questions