Click here to Skip to main content
15,913,773 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Is this corrent. Pin
David Crow24-Sep-08 4:20
David Crow24-Sep-08 4:20 
GeneralRe: Is this corrent. Pin
Member 409922224-Sep-08 16:35
Member 409922224-Sep-08 16:35 
GeneralRe: Is this corrent. Pin
David Crow24-Sep-08 17:24
David Crow24-Sep-08 17:24 
GeneralRe: Is this corrent. Pin
Member 409922224-Sep-08 20:32
Member 409922224-Sep-08 20:32 
QuestionRe: Is this corrent. Pin
David Crow25-Sep-08 3:36
David Crow25-Sep-08 3:36 
AnswerRe: Is this corrent. Pin
George L. Jackson23-Sep-08 17:44
George L. Jackson23-Sep-08 17:44 
GeneralRe: Is this corrent. Pin
Member 409922223-Sep-08 20:44
Member 409922223-Sep-08 20:44 
GeneralRe: Is this corrent. Pin
toxcct23-Sep-08 21:24
toxcct23-Sep-08 21:24 
Member 4099222 wrote:
c=a>>5;b=c|a; a=~c&~b; c=b*a^5;


WTF | :WTF: WTF are you trying to achieve with this ?

why don't you just listen to the answers you get, try to understand them, and fix your code the simple way people just told you ?

your parameters to printf() are in the wrong order dude !

your code is making the addition of c = a + b, but you want to print c + b = a... WTF !

what you do (the wrong thing):
printf("%d+%d=%d\n", c, a, b);
 
what you should do (the good thing):
printf("%d+%d=%d\n", <code>a, b, c</code>);



QuestionHow to save HDC to a file? Pin
TooShy2Talk23-Sep-08 15:59
TooShy2Talk23-Sep-08 15:59 
QuestionHow can I send a file to a given eMail address? Pin
Joseph Marzbani23-Sep-08 11:00
Joseph Marzbani23-Sep-08 11:00 
AnswerRe: How can I send a file to a given eMail address? Pin
SandipG 23-Sep-08 19:15
SandipG 23-Sep-08 19:15 
QuestionGet drive letters and thier types ... [modified] Pin
Joseph Marzbani23-Sep-08 9:52
Joseph Marzbani23-Sep-08 9:52 
AnswerRe: Get drive letters and thier types ... Pin
Perspx23-Sep-08 10:07
Perspx23-Sep-08 10:07 
GeneralRe: Get drive letters and thier types ... Pin
Joseph Marzbani23-Sep-08 10:53
Joseph Marzbani23-Sep-08 10:53 
AnswerRe: Get drive letters and thier types ... Pin
David Crow23-Sep-08 10:07
David Crow23-Sep-08 10:07 
GeneralRe: Get drive letters and thier types ... Pin
Joseph Marzbani23-Sep-08 10:47
Joseph Marzbani23-Sep-08 10:47 
QuestionMake a pointer to a member function ... Pin
Joseph Marzbani23-Sep-08 7:13
Joseph Marzbani23-Sep-08 7:13 
AnswerRe: Make a pointer to a member function ... Pin
David Crow23-Sep-08 7:20
David Crow23-Sep-08 7:20 
GeneralRe: Make a pointer to a member function ... Pin
Joseph Marzbani23-Sep-08 7:44
Joseph Marzbani23-Sep-08 7:44 
AnswerRe: Make a pointer to a member function ... Pin
Cedric Moonen23-Sep-08 7:22
Cedric Moonen23-Sep-08 7:22 
GeneralRe: Make a pointer to a member function ... Pin
Joseph Marzbani23-Sep-08 7:43
Joseph Marzbani23-Sep-08 7:43 
GeneralRe: Make a pointer to a member function ... Pin
CPallini23-Sep-08 8:13
mveCPallini23-Sep-08 8:13 
GeneralRe: Make a pointer to a member function ... Pin
Joseph Marzbani23-Sep-08 8:15
Joseph Marzbani23-Sep-08 8:15 
GeneralYou're welcome. Pin
CPallini23-Sep-08 8:27
mveCPallini23-Sep-08 8:27 
Questioncontrol of serial port handshaking lines Pin
jimjim73323-Sep-08 5:49
jimjim73323-Sep-08 5:49 

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.