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);
}

Cá Vàng viết 21:52 ngày 30/09/2018

ai giúp e vs

Phuong Ho viết 21:49 ngày 30/09/2018

etmaLo

Bạn đã include string header file chưa?

  #include <string>
Cá Vàng viết 21:55 ngày 30/09/2018

Đã thêm nhưng vẫn k đc ạ

Gió viết 21:55 ngày 30/09/2018

#include < cstring>
Hoặc #include < string.h>

Cá Vàng viết 21:48 ngày 30/09/2018

? ý bro là sao ???

Cá Vàng viết 21:44 ngày 30/09/2018

ok đc r ạ tks các bro

X viết 21:44 ngày 30/09/2018

This topic was automatically closed after 3 hours. New replies are no longer allowed.

Bài liên quan
0