Click here to Skip to main content
15,798,673 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: passing parameters to Cdialog Pin
Sascha Lefèvre30-Oct-17 15:03
professionalSascha Lefèvre30-Oct-17 15:03 
GeneralRe: passing parameters to Cdialog Pin
Rick York30-Oct-17 16:26
mveRick York30-Oct-17 16:26 
GeneralRe: passing parameters to Cdialog Pin
Richard MacCutchan30-Oct-17 23:45
mveRichard MacCutchan30-Oct-17 23:45 
GeneralRe: passing parameters to Cdialog Pin
Jochen Arndt31-Oct-17 0:06
professionalJochen Arndt31-Oct-17 0:06 
Questionpascals triangle using user-define function use. Not working ! Pin
Tarun Jha28-Oct-17 9:50
Tarun Jha28-Oct-17 9:50 
AnswerRe: pascals triangle using user-define function use. Not working ! Pin
Victor Nijegorodov28-Oct-17 10:12
Victor Nijegorodov28-Oct-17 10:12 
AnswerRe: pascals triangle using user-define function use. Not working ! Pin
Richard MacCutchan28-Oct-17 23:03
mveRichard MacCutchan28-Oct-17 23:03 
AnswerRe: pascals triangle using user-define function use. Not working ! Pin
CPallini29-Oct-17 23:59
mveCPallini29-Oct-17 23:59 
Your factorial function is flawed (a decrementing num as stop condition for i is really a bad choice), try replacing it with
C
long int factorial(int num)
{
  long int fact = 1;
  int i;
  for (i=2; i<=num; ++i)
    fact *= i;

  return fact;
}

GeneralRe: pascals triangle using user-define function use. Not working ! Pin
Tarun Jha31-Oct-17 11:19
Tarun Jha31-Oct-17 11:19 
GeneralRe: pascals triangle using user-define function use. Not working ! Pin
CPallini1-Nov-17 0:30
mveCPallini1-Nov-17 0:30 
QuestionData Structure issue Pin
patriotaki28-Oct-17 3:33
patriotaki28-Oct-17 3:33 
AnswerRe: Data Structure issue Pin
leon de boer28-Oct-17 7:23
leon de boer28-Oct-17 7:23 
GeneralRe: Data Structure issue Pin
harold aptroot28-Oct-17 7:52
harold aptroot28-Oct-17 7:52 
GeneralRe: Data Structure issue Pin
leon de boer28-Oct-17 7:58
leon de boer28-Oct-17 7:58 
GeneralRe: Data Structure issue Pin
harold aptroot28-Oct-17 8:42
harold aptroot28-Oct-17 8:42 
GeneralRe: Data Structure issue Pin
leon de boer29-Oct-17 0:10
leon de boer29-Oct-17 0:10 
GeneralRe: Data Structure issue Pin
harold aptroot29-Oct-17 1:52
harold aptroot29-Oct-17 1:52 
GeneralRe: Data Structure issue Pin
leon de boer29-Oct-17 8:45
leon de boer29-Oct-17 8:45 
GeneralRe: Data Structure issue Pin
harold aptroot29-Oct-17 10:38
harold aptroot29-Oct-17 10:38 
GeneralRe: Data Structure issue Pin
leon de boer29-Oct-17 18:12
leon de boer29-Oct-17 18:12 
GeneralRe: Data Structure issue Pin
harold aptroot29-Oct-17 23:37
harold aptroot29-Oct-17 23:37 
GeneralRe: Data Structure issue Pin
leon de boer30-Oct-17 5:25
leon de boer30-Oct-17 5:25 
AnswerRe: Data Structure issue Pin
CPallini30-Oct-17 0:04
mveCPallini30-Oct-17 0:04 
Questionalogaritm for mini calender project Pin
Member 1348043227-Oct-17 4:21
Member 1348043227-Oct-17 4:21 
AnswerRe: alogaritm for mini calender project Pin
CPallini27-Oct-17 4:27
mveCPallini27-Oct-17 4:27 

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.