30/09/2018, 19:43
lỗi 'strcpy' was not declared in this scope
e bị lỗi trên vs đoạn code sau:
#include<iostream>
using namespace std;
class KhoiTao
{
private:
char *maLop,*maSV,*hoTen,*ngaySinh;
float *diemTB;
public:
KhoiTao()
{
maLop = new char[10];
maSV = new char[10];
hoTen = new char[100];
ngaySinh = new char[10];
}
void setmaLop(char *);
char getmaLop();
void setmaSV(char);
char getmaSV();
void sethoTen(char);
char gethoTen();
void setngaySinh(char);
char getngaySinh();
void setdiemTB(float);
float getdiemTB();
void setSoSV(int);
};
#include <iostream>
#include "KhoiTao.h"
using namespace std;
void KhoiTao::setmaLop(char *ml)
{
strcpy(maLop,ml);
}
Bài liên quan
ai giúp e vs
Bạn đã include string header file chưa?
Đã thêm nhưng vẫn k đc ạ
#include < cstring>
Hoặc #include < string.h>
? ý bro là sao ???
ok đc r ạ tks các bro
This topic was automatically closed after 3 hours. New replies are no longer allowed.