Click here to Skip to main content
15,899,754 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: c++ and using public static members in a class Pin
Chris Losinger5-Mar-10 10:57
professionalChris Losinger5-Mar-10 10:57 
AnswerRe: c++ and using public static members in a class Pin
Alain Rist5-Mar-10 11:08
Alain Rist5-Mar-10 11:08 
AnswerRe: c++ and using public static members in a class Pin
Avi Berger5-Mar-10 12:52
Avi Berger5-Mar-10 12:52 
AnswerRe: c++ and public static member functions - alternative approach Pin
Avi Berger5-Mar-10 13:26
Avi Berger5-Mar-10 13:26 
GeneralRe: c++ and public static member functions - alternative approach Pin
Alan Kurlansky6-Mar-10 11:34
Alan Kurlansky6-Mar-10 11:34 
GeneralRe: c++ and public static member functions - alternative approach Pin
Avi Berger6-Mar-10 16:43
Avi Berger6-Mar-10 16:43 
GeneralRe: c++ and public static member functions - alternative approach Pin
Alan Kurlansky6-Mar-10 11:35
Alan Kurlansky6-Mar-10 11:35 
QuestionBagh! Pointers Pin
Herboren5-Mar-10 9:53
Herboren5-Mar-10 9:53 
I was reading http://www.cplusplus.com/doc/tutorial/pointers/
I understood most of what they were saying, so I chose to write my own code and comment what I have done to remember it in the future, but then its starts getting confusing near "Pointers and arrays" can anyone point out some simpler code for me to understand, so far this is the last thing I created::

// Pointers.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include < conio.h >
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
	int fI = 3, sI = 2, tI = 1;
	int * p1, * p2, * p3;

	 p1 = &fI;			//Reference of first Integere held in p1
	 cout << p1 << ": ";
	*p1 = fI;			//*p1 points to the varible reference at location 
	cout << *p1 << endl;
	
	 p2 = &sI;			//Reference of second first Integere held in p2
	 cout << p2 << ": ";
	*p2 = sI;			//*p2 points to the varible reference at location 
	cout << *p2 << endl;

	 p3 = &tI;			//Reference of third Integere held in p3
	 cout << p3 << ": ";
	*p3 = tI;			//*p3 points to the varible reference at location 
	cout << *p3 << endl;

	_getch();
	return 0;
}

AnswerRe: Bagh! Pointers Pin
Chris Losinger5-Mar-10 10:31
professionalChris Losinger5-Mar-10 10:31 
AnswerRe: Bagh! Pointers Pin
David Crow5-Mar-10 10:48
David Crow5-Mar-10 10:48 
Questionthe "Decimal" data type in vc++ Pin
b-rad3115-Mar-10 8:17
b-rad3115-Mar-10 8:17 
AnswerRe: the "Decimal" data type in vc++ Pin
Chris Losinger5-Mar-10 8:19
professionalChris Losinger5-Mar-10 8:19 
AnswerRe: the "Decimal" data type in vc++ Pin
Nemanja Trifunovic5-Mar-10 8:25
Nemanja Trifunovic5-Mar-10 8:25 
GeneralRe: the "Decimal" data type in vc++ [modified] Pin
bob1697217-Mar-10 15:39
bob1697217-Mar-10 15:39 
AnswerRe: the "Decimal" data type in vc++ Pin
Alain Rist5-Mar-10 9:52
Alain Rist5-Mar-10 9:52 
QuestionCstring to char Pin
johnalek5-Mar-10 7:03
johnalek5-Mar-10 7:03 
AnswerRe: Cstring to char Pin
Chris Losinger5-Mar-10 7:17
professionalChris Losinger5-Mar-10 7:17 
AnswerRe: Cstring to char Pin
Rajesh R Subramanian5-Mar-10 7:40
professionalRajesh R Subramanian5-Mar-10 7:40 
Questionvector in space Pin
khomeyni5-Mar-10 7:03
khomeyni5-Mar-10 7:03 
AnswerRe: vector in space PinPopular
Chris Losinger5-Mar-10 7:21
professionalChris Losinger5-Mar-10 7:21 
GeneralRe: vector in space Pin
khomeyni5-Mar-10 17:04
khomeyni5-Mar-10 17:04 
QuestionHow could I change the CMFCPropertyGridCtrl Property or value column width Pin
A&Ms5-Mar-10 6:49
A&Ms5-Mar-10 6:49 
AnswerRe: How could I change the CMFCPropertyGridCtrl Property or value column width Pin
jung-kreidler11-Sep-11 20:36
jung-kreidler11-Sep-11 20:36 
GeneralRe: How could I change the CMFCPropertyGridCtrl Property or value column width Pin
Martial Spirit15-Jul-21 22:55
Martial Spirit15-Jul-21 22:55 
Questionatof doesn't convert exactly [Solved] Pin
b-rad3115-Mar-10 6:17
b-rad3115-Mar-10 6:17 

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.