Post: [Ansi C] Thắc mắc khai báo con trỏ
User: clevercoi
Infraction: Tạo thread thiếu chất lượng
Points: 1
Administrative Note:
Message to User:
Original Post:
User: clevercoi
Infraction: Tạo thread thiếu chất lượng
Points: 1
Administrative Note:
Message to User:
Originally posted by sinhvien.uit
View Post
Original Post:
Sao mình khai báo như vầy thì lỗi.
char a[5],*p;
*p=a;
=>error dump core.
sửa lại như vầy thì ok:
char a[5];
char *p=a;
char a[5],*p;
*p=a;
=>error dump core.
sửa lại như vầy thì ok:
char a[5];
char *p=a;