Click here to Skip to main content
15,889,281 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionConsole BEEP! (ASCII bell code?) Pin
macklinbob7-Aug-07 16:41
macklinbob7-Aug-07 16:41 
AnswerRe: Console BEEP! (ASCII bell code?) Pin
Mark Salsbery7-Aug-07 16:54
Mark Salsbery7-Aug-07 16:54 
AnswerRe: Console BEEP! (ASCII bell code?) Pin
macklinbob7-Aug-07 18:17
macklinbob7-Aug-07 18:17 
AnswerRe: Console BEEP! (ASCII bell code?) Pin
Hamid_RT7-Aug-07 19:09
Hamid_RT7-Aug-07 19:09 
GeneralRe: Console BEEP! (ASCII bell code?) Pin
ThatsAlok7-Aug-07 23:07
ThatsAlok7-Aug-07 23:07 
GeneralRe: Console BEEP! (ASCII bell code?) Pin
Hamid_RT8-Aug-07 3:48
Hamid_RT8-Aug-07 3:48 
AnswerRe: Console BEEP! (ASCII bell code?) Pin
Eric Strain15-Aug-09 4:59
Eric Strain15-Aug-09 4:59 
QuestionLinked Lists in C++ [modified] Pin
Muhammad Shemyal Nisar7-Aug-07 11:08
Muhammad Shemyal Nisar7-Aug-07 11:08 
My question is quite elementary in nature but i have really forgotten how to move about this thing. i am facing problem with making linked lists without using the header for them in visual c++. i mean i want to make a class for the purpose.

any help would be really appreiciated. the crude code that i have written till now is given. i want to know what really i am missing here.

#include<iostream>
using namespace std;

class data
{
private:
	*previous;
	char name;
	int pnum;
	int gpa;
	*next;
public:
	void add()
	{

	}
	void del()
	{
	}
	void average_gpa()
	{
	}
};
int main()
{
	
	*data=new data;
	return 0;
}


Muhammad Shemyal Nisar


-- modified at 22:58 Tuesday 7th August, 2007
AnswerRe: Linked Lists in C++ Pin
Liam O'Hagan7-Aug-07 16:44
Liam O'Hagan7-Aug-07 16:44 
GeneralRe: Linked Lists in C++ Pin
Mark Salsbery7-Aug-07 17:46
Mark Salsbery7-Aug-07 17:46 
GeneralRe: Linked Lists in C++ Pin
ThatsAlok7-Aug-07 23:03
ThatsAlok7-Aug-07 23:03 
AnswerRe: Linked Lists in C++ Pin
David Crow7-Aug-07 17:25
David Crow7-Aug-07 17:25 
QuestionOpening Webfolder files - storing their paths Pin
anujpshah7-Aug-07 10:30
anujpshah7-Aug-07 10:30 
QuestionPassing a 2 Dim Array to a DLL written in C++ Pin
CK9387-Aug-07 9:44
CK9387-Aug-07 9:44 
QuestionRe: Passing a 2 Dim Array to a DLL written in C++ Pin
David Crow7-Aug-07 10:20
David Crow7-Aug-07 10:20 
AnswerRe: Passing a 2 Dim Array to a DLL written in C++ Pin
CK9387-Aug-07 12:07
CK9387-Aug-07 12:07 
QuestionRe: Passing a 2 Dim Array to a DLL written in C++ Pin
CK9387-Aug-07 12:13
CK9387-Aug-07 12:13 
GeneralRe: Passing a 2 Dim Array to a DLL written in C++ Pin
David Crow7-Aug-07 17:07
David Crow7-Aug-07 17:07 
QuestionRe: Passing a 2 Dim Array to a DLL written in C++ Pin
CK9388-Aug-07 3:38
CK9388-Aug-07 3:38 
QuestionClear the debug output window Pin
bob169727-Aug-07 9:15
bob169727-Aug-07 9:15 
AnswerRe: Clear the debug output window Pin
Jim Crafton7-Aug-07 9:34
Jim Crafton7-Aug-07 9:34 
AnswerRe: Clear the debug output window Pin
Mark Salsbery7-Aug-07 9:44
Mark Salsbery7-Aug-07 9:44 
GeneralRe: Clear the debug output window Pin
bob169727-Aug-07 10:12
bob169727-Aug-07 10:12 
GeneralRe: Clear the debug output window Pin
David Crow7-Aug-07 10:22
David Crow7-Aug-07 10:22 
GeneralRe: Clear the debug output window Pin
bob169727-Aug-07 19:21
bob169727-Aug-07 19:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.