function call missing argument

I have same type of errors in my program please help me out....
I am just a Beginner in C++....
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
#include "iostream"
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
using namespace std;

class form
{
private:
	char fname[20];
	char lname[20];
	char add[50];
	char city[25];
	int contact;
public:
		form()
	{
	fname[20]='\0';
	lname[20]='\0';
	add[50]='\0';
	city[25]='\0';
	contact=0;
	}
	void input()
	{
		system("cls");
		cout << "----------------------------------------------" << endl;
		cout << "**********************************************" << endl;
		cout << "----------------------------------------------" << endl;
		cout << "\nEnter First Name: " << endl;
		cin.getline(fname, 20);
		cout << "\nEnter Last Name Name: " << endl;
		cin.getline(lname, 20);
		cout << "\nEnter Your Address: " << endl;
		cin.getline(add, 50);
		cout << "\nEnter Your City: " << endl;
		cin.getline(city, 25);
		cout << "Enter Your Contact: ";
		cin >> contact;
		cout << endl;
		cout << "----------------------------------------------" << endl;
		cout << "**********************************************" << endl;
		cout << "----------------------------------------------" << endl;

	}//end of input-function
	void display()
	{
		system("cls");
		cout << "----------------------------------------------" << endl;
		cout << "**********************************************" << endl;
		cout << "----------------------------------------------" << endl;
		cout << "Full Name: " << fname<< " " << lname << endl;
		cout << "Address: " << add << endl;
		cout << "Contact: " << contact << endl;
		cout << "----------------------------------------------" << endl;
		cout << "**********************************************" << endl;
		cout << "----------------------------------------------" << endl;
	}//end of display-function


};//End of class-form

class complaint_type
{
	
public:
	void low_speed()
	{
		system("cls");
		cout << "Your Device Parameters are LOW" << endl;
		cout << "Your Complain Number is 91" << endl;
		cout << "Call 1218 for information" << endl;
		cout << "Thank You for Using PTCL" << endl;
	}
	void disconnecting()
	{
		system("cls");
		cout << "Problem in device";
		cout << "Please goto EVO ONE STOP SHOP for repair" << endl;
		cout << "Your Complain Number is 19" << endl;
		cout << "Call 1218 for information" << endl;
		cout << "Thank You for Using PTCL" << endl;


	}
	void bill()
	{
		system("cls");
		cout << "Your Complain Number is 81" << endl;
		cout << "Call 1218 for for information" << endl;
		cout << "Thank You for Using PTCL" << endl;
	}
	void browsing()
	{
		system("cls");
		cout << "Your Complain Number is 45" << endl;
		cout << "Call 1218 for information" << endl;
		cout << "Thank You for Using PTCL" << endl;
	}
	void voice()
	{
		system("cls");
		cout << "Your Complain Number is 65" << endl;
		cout << "Call 1218 for information" << endl;
		cout << "Thank You for Using PTCL" << endl;
	}
	void signal()
	{
		system("cls");
		cout << "Your Complain Number is 33" << endl;
		cout << "Call 1218 for information" << endl;
		cout << "Thank You for Using PTCL" << endl;

	}



};//end of coplaint-type

class PTCL
{
	
private:
	complaint_type *obj;
	int select,lnum,MDN;
public:
	
	void EVO()
	{
		system("cls");
		cout << "------------Welcome to EVO Complaint------------" << endl;
		cout << "Enter Your MDN: ";
		cin >> MDN;
		cout << endl;
		cout << "1. Low Speed" << endl;
		cout << "2. Signal" << endl;
		cout << "3. Browsing" << endl;
		cout << "4. Disconnecting" << endl;
		cout << "5. Billing" << endl;
		cout << "Enter Your Section: " << endl;
		cin >> select;
		if (select == 1)
		{
			obj->low_speed;
		}
		else if (select==2)
		{
			obj->signal;
		}
		else if (select == 3)
		{
			obj->browsing;
		}
		else if (select == 4)
		{
			obj->disconnecting;
		}
		else if (select == 5)
		{
			obj->bill;
		}
		else
		{
			cout << "\nWrong Selection";
		}

	}
	void Broadband()
	{
		system("cls");
		cout << "------------Welcome to Broadband Complaint------------" << endl;
		cout << "Enter Your Number With area code: ";
		cin >> lnum;
		cout << endl;
		cout << "1. Low Speed" << endl;
		cout << "2. Browsing" << endl;
		cout << "3. Disconnecting" << endl;
		cout << "4. Billing" << endl;
		cout << "Enter Your Section: " << endl;
		cin >> select;
		if (select == 1)
		{
			obj->low_speed;
		}
		
		else if (select == 2)
		{
			obj->browsing;
		}
		else if (select == 3)
		{
			obj->disconnecting;
		}
		else if (select == 4)
		{
			obj->bill;
		}
		else
		{
			cout << "\nWrong Selection";
		}

	}
	void Landline()
	{
		system("cls");
		cout << "------------Welcome to LandLine Complaint------------" << endl;
		cout << "Enter Your Number With area code: ";
		cin >> lnum;
		cout << endl;
		cout << "1. Voice" << endl;
		cout << "2. Disconnecting" << endl;
		cout << "3. Billing" << endl;
		cout << "Enter Your Section: " << endl;
		cin >> select;
		if (select == 1)
		{
			obj->voice;
		}

		else if (select == 2)
		{
			obj->disconnecting;
		}
		else if (select == 3)
		{
			obj->bill;
		}
		
		else
		{
			cout << "\nWrong Selection";
		}

	}


};
int main(int argc, char *argv[])
{
	PTCL *obj2;
	cout << "-----------------Welcome to--------------------" << endl;
	cout << "----------PTCL Complain Management-------------" << endl;
	cout << "\n\n";
	cout << "1. LandLine" << endl;
	cout << "2. Broadband" << endl;
	cout << "3. EVO Wireless" << endl;
	cout << "4. Form" << endl;
	int a;
	cout << "Enter Selection: ";
	cin >> a;
	switch (a)
	{
	case 1:
	{
			  
			  obj2->Landline;
			  break;
	}
	case 2:
	{
			  obj2->Broadband;
			  break;
	}
	case 3:
	{
			  obj2->EVO;
			  break;
	}
	default:
	{
			   cout << "Wrong Input";
			   break;
	}
	}
	
	return 0;
}
What are the errors?
function call missing argument.....
PTCL *obj2;
This doesn't actually instantiate an object -- it just declares a pointer.
It looks like you don't actually need to a pointer here, so you can just change it to
PTCL obj2;.

Also, your function calls are wrong.
For instance:
obj2->Landline;
If obj2 is a pointer, then it should be obj2->Landline();, and if it's not (which is the case if you make the other change above), then it should be obj2.Landline();.
Topic archived. No new replies allowed.