Click here to Skip to main content
15,884,388 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: If I use a library, do I need DLL file ? Pin
Legor15-May-14 2:29
Legor15-May-14 2:29 
GeneralRe: If I use a library, do I need DLL file ? Pin
_Flaviu15-May-14 4:01
_Flaviu15-May-14 4:01 
GeneralRe: If I use a library, do I need DLL file ? Pin
_Flaviu19-May-14 21:50
_Flaviu19-May-14 21:50 
GeneralRe: If I use a library, do I need DLL file ? Pin
Legor19-May-14 23:46
Legor19-May-14 23:46 
Questionwrite Series of this program 1+-3+5+-7+9+-11 in c++ Pin
Beiniam12-May-14 5:22
Beiniam12-May-14 5:22 
QuestionRe: write Series of this program 1+-3+5+-7+9+-11 in c++ Pin
jeron112-May-14 5:38
jeron112-May-14 5:38 
AnswerRe: write Series of this program 1+-3+5+-7+9+-11 in c++ Pin
«_Superman_»12-May-14 19:11
professional«_Superman_»12-May-14 19:11 
AnswerI can only point you in the right direction... Pin
Software_Developer12-May-14 23:42
Software_Developer12-May-14 23:42 
I can only point you in the right direction.

C++
#include <iostream> 
using namespace std; 

int main() 
{ 
	 int n=43, sum = 0,neg= 1; 

	  for(int i = 1; i <= n; i+=2) 
	  {
		 
		sum += (i*neg); 
		cout <<"i="<<i<< " neg sgn =" << (i*neg)<< " sum ="<< sum << " \n"; 
 
		neg=-neg;
	  }
	  cout<<"\n";

 return 0; 
} 

AnswerRe: write Series of this program 1+-3+5+-7+9+-11 in c++ Pin
C_Vivek Arya13-May-14 5:33
C_Vivek Arya13-May-14 5:33 
GeneralRe: write Series of this program 1+-3+5+-7+9+-11 in c++ Pin
CPallini13-May-14 5:52
mveCPallini13-May-14 5:52 
Questionhow to design the architecture? Pin
Falconapollo12-May-14 0:09
Falconapollo12-May-14 0:09 
AnswerRe: how to design the architecture? Pin
«_Superman_»12-May-14 1:05
professional«_Superman_»12-May-14 1:05 
GeneralRe: how to design the architecture? Pin
Falconapollo12-May-14 14:56
Falconapollo12-May-14 14:56 
GeneralRe: how to design the architecture? Pin
«_Superman_»12-May-14 19:34
professional«_Superman_»12-May-14 19:34 
GeneralRe: how to design the architecture? Pin
Falconapollo12-May-14 19:47
Falconapollo12-May-14 19:47 
GeneralRe: how to design the architecture? Pin
«_Superman_»12-May-14 19:59
professional«_Superman_»12-May-14 19:59 
GeneralRe: how to design the architecture? Pin
Falconapollo12-May-14 20:04
Falconapollo12-May-14 20:04 
QuestionPosition Of Taskbar in MFC Pin
Member 945167311-May-14 22:40
Member 945167311-May-14 22:40 
AnswerRe: Position Of Taskbar in MFC Pin
Richard MacCutchan11-May-14 23:12
mveRichard MacCutchan11-May-14 23:12 
AnswerRe: Position Of Taskbar in MFC Pin
«_Superman_»11-May-14 23:13
professional«_Superman_»11-May-14 23:13 
QuestionHow can I fix memory leaks with CMFCVisualManager? Pin
Andrew Truckle9-May-14 21:06
professionalAndrew Truckle9-May-14 21:06 
AnswerRe: How can I fix memory leaks with CMFCVisualManager? Pin
ahmad_ali16-May-14 5:42
ahmad_ali16-May-14 5:42 
AnswerRe: How can I fix memory leaks with CMFCVisualManager? Pin
Andrew Truckle16-May-14 5:45
professionalAndrew Truckle16-May-14 5:45 
QuestionHow to change the "application menu" button on the CMFCRibbonBar Pin
Andrew Truckle9-May-14 21:04
professionalAndrew Truckle9-May-14 21:04 
Questionhow to detect Blue Screen Of Death in my driver Pin
Member 84685749-May-14 17:24
Member 84685749-May-14 17:24 

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.