Click here to Skip to main content
15,886,578 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: deque best practices Pin
Chris Losinger2-Mar-08 5:15
professionalChris Losinger2-Mar-08 5:15 
GeneralRe: deque best practices Pin
George_George2-Mar-08 14:09
George_George2-Mar-08 14:09 
GeneralRe: deque best practices Pin
Chris Losinger2-Mar-08 14:12
professionalChris Losinger2-Mar-08 14:12 
GeneralRe: deque best practices Pin
George_George2-Mar-08 14:51
George_George2-Mar-08 14:51 
GeneralRe: deque best practices Pin
Chris Losinger2-Mar-08 15:02
professionalChris Losinger2-Mar-08 15:02 
GeneralRe: deque best practices Pin
George_George2-Mar-08 15:13
George_George2-Mar-08 15:13 
Generaltypedef struct problem Pin
gentleguy1-Mar-08 22:21
gentleguy1-Mar-08 22:21 
GeneralRe: typedef struct problem Pin
Gary R. Wheeler2-Mar-08 1:04
Gary R. Wheeler2-Mar-08 1:04 
The typedef keyword creates a new name for an existing type. Using your example,
typedef struct a {
  int c;
  int b;
} ddd;
you can use the following:
struct a a1;
ddd a2;
This can be very useful when the existing name for a type is complicated (for example, with templates in C++).

Software Zen: delete this;
Fold With Us![^]

GeneralRe: typedef struct problem Pin
gentleguy2-Mar-08 15:52
gentleguy2-Mar-08 15:52 
GeneralRe: typedef struct problem Pin
Gary R. Wheeler3-Mar-08 11:18
Gary R. Wheeler3-Mar-08 11:18 
Generalsize and iterator of deque Pin
George_George1-Mar-08 20:43
George_George1-Mar-08 20:43 
GeneralRe: size and iterator of deque Pin
markkuk1-Mar-08 22:10
markkuk1-Mar-08 22:10 
GeneralRe: size and iterator of deque Pin
George_George1-Mar-08 22:50
George_George1-Mar-08 22:50 
Generalrandom access iterator Pin
George_George1-Mar-08 20:33
George_George1-Mar-08 20:33 
GeneralRe: random access iterator Pin
Stephen Hewitt2-Mar-08 12:44
Stephen Hewitt2-Mar-08 12:44 
GeneralRe: random access iterator Pin
George_George2-Mar-08 14:09
George_George2-Mar-08 14:09 
Questioncreating windows services using MFC\c++ Pin
AmitCohen2221-Mar-08 19:13
AmitCohen2221-Mar-08 19:13 
GeneralRe: creating windows services using MFC\c++ Pin
Hamid_RT1-Mar-08 19:50
Hamid_RT1-Mar-08 19:50 
AnswerRe: creating windows services using MFC\c++ Pin
AmitCohen2222-Mar-08 3:22
AmitCohen2222-Mar-08 3:22 
GeneralRe: creating windows services using MFC\c++ Pin
Hamid_RT2-Mar-08 4:51
Hamid_RT2-Mar-08 4:51 
QuestionSuperImposing text over video? Pin
Chandrasekharan P1-Mar-08 18:17
Chandrasekharan P1-Mar-08 18:17 
AnswerRe: SuperImposing text over video? Pin
Mark Salsbery1-Mar-08 18:46
Mark Salsbery1-Mar-08 18:46 
QuestionA program which can delete itself Pin
zengkun1001-Mar-08 18:12
zengkun1001-Mar-08 18:12 
GeneralRe: A program which can delete itself Pin
Hamid_RT1-Mar-08 19:58
Hamid_RT1-Mar-08 19:58 
GeneralRe: A program which can delete itself Pin
zengkun1001-Mar-08 21:15
zengkun1001-Mar-08 21:15 

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.