Câu hỏi của MinLee

lỗi Error 1 error C2513: 'NODE *' : no variable declared before '='

báo lỗi Error 1 error C2513: ‘NODE *’ : no variable declared before ‘=’ #include<iostream> using namespace std; struct Node { int data; struct Node *pleft; struct Node *pright; }; typedef struct Node NODE; typedef NODE* Tree; void Init(Tree &t) { Tree=NULL; } void ...

MinLee viết 18:14 ngày 30/09/2018 chỉnh sửa

nhờ m.n xem giúp lỗi bài tập c++;

#include<iostream> using namespace std; #define max 100 int a[max]; void input(int a[], int n) { for(int i=0; i<n; i++) { cout<<"a["<<i<<"]= "; cin>>a[i]; } } int menu() { cout<<"1.nhap danh sach " <<"2.xuat danh sach " <<"0.thoat " ...

MinLee viết 18:08 ngày 30/09/2018 chỉnh sửa
1