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

C / C++ / MFC

 
QuestionFile and printer sharing? Pin
Dominik Reichl19-Aug-03 21:30
Dominik Reichl19-Aug-03 21:30 
AnswerRe: File and printer sharing? Pin
vcplusplus19-Aug-03 22:05
vcplusplus19-Aug-03 22:05 
GeneralProperty Pages Pin
Kamesh19-Aug-03 19:52
Kamesh19-Aug-03 19:52 
Generalexe with parameters.. Pin
xxhimanshu19-Aug-03 18:22
xxhimanshu19-Aug-03 18:22 
GeneralRe: exe with parameters.. Pin
Dominik Reichl19-Aug-03 20:50
Dominik Reichl19-Aug-03 20:50 
Generalsuggestions plzzz.. Pin
xxhimanshu19-Aug-03 18:14
xxhimanshu19-Aug-03 18:14 
Generalcomma operator Pin
Marissa18219-Aug-03 16:38
Marissa18219-Aug-03 16:38 
GeneralRe: comma operator Pin
Dave Bryant19-Aug-03 16:44
Dave Bryant19-Aug-03 16:44 
Mainly because it makes it a lot harder to see what is going if the comma operator is used for anything more complicated than a fairly trivial statement. If you write a complex function in one line using the comma operator, and then come back to it 6 months or a year later, it would be considerably more difficult to understand what is going on, than if it were written clearly in multiple statements.

It is mainly useful in contexts where only a single statement is allowed - for example, in the increment statement of a for loop.

for ( int i = 0, j = 10 ; i < nCount ; ++i, --j ) {
  // ...
}

Dave
http://www.cloudsofheaven.org
GeneralRe: comma operator Pin
Maxwell Chen19-Aug-03 17:06
Maxwell Chen19-Aug-03 17:06 
GeneralRe: comma operator Pin
Marissa18219-Aug-03 17:09
Marissa18219-Aug-03 17:09 
GeneralRe: comma operator Pin
Maxwell Chen20-Aug-03 16:01
Maxwell Chen20-Aug-03 16:01 
GeneralRe: comma operator Pin
Ryan Binns19-Aug-03 21:01
Ryan Binns19-Aug-03 21:01 
GeneralNeed help in SDI Pin
Snyp19-Aug-03 16:04
Snyp19-Aug-03 16:04 
Generalfile extensions Pin
Marissa18219-Aug-03 16:03
Marissa18219-Aug-03 16:03 
GeneralRe: file extensions Pin
Mahesh Varma19-Aug-03 18:12
Mahesh Varma19-Aug-03 18:12 
GeneralRe: file extensions Pin
Mahesh Varma19-Aug-03 18:25
Mahesh Varma19-Aug-03 18:25 
Questionhow do i convert bmp to jpeg? Pin
hxr60119-Aug-03 15:53
hxr60119-Aug-03 15:53 
AnswerRe: how do i convert bmp to jpeg? Pin
Mahesh Varma19-Aug-03 17:42
Mahesh Varma19-Aug-03 17:42 
GeneralCheckboxes and CTreeCtrl!?!?! Pin
Bob Stanneveld19-Aug-03 13:38
Bob Stanneveld19-Aug-03 13:38 
GeneralRe: Checkboxes and CTreeCtrl!?!?! Pin
Dominik Reichl19-Aug-03 20:57
Dominik Reichl19-Aug-03 20:57 
GeneralRe: Checkboxes and CTreeCtrl!?!?! Pin
Bob Stanneveld20-Aug-03 3:48
Bob Stanneveld20-Aug-03 3:48 
Generalfopen (* delete *) Pin
The_Server19-Aug-03 13:21
The_Server19-Aug-03 13:21 
GeneralRe: fopen (* delete *) Pin
ZoogieZork19-Aug-03 13:52
ZoogieZork19-Aug-03 13:52 
GeneralRe: fopen (* delete *) Pin
Mahesh Varma19-Aug-03 17:49
Mahesh Varma19-Aug-03 17:49 
GeneralHelp in SDI Pin
Snyp19-Aug-03 13:15
Snyp19-Aug-03 13: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.