Click here to Skip to main content
16,013,605 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Function help Pin
Bram van Kampen5-Apr-07 14:59
Bram van Kampen5-Apr-07 14:59 
GeneralRe: Function help Pin
planetx225-Apr-07 15:16
planetx225-Apr-07 15:16 
GeneralRe: Function help Pin
Rick York5-Apr-07 15:27
mveRick York5-Apr-07 15:27 
GeneralRe: Function help Pin
Bram van Kampen5-Apr-07 15:39
Bram van Kampen5-Apr-07 15:39 
Questionfibbonacci series Pin
badamanil5-Apr-07 10:54
badamanil5-Apr-07 10:54 
AnswerRe: fibbonacci series Pin
led mike5-Apr-07 10:59
led mike5-Apr-07 10:59 
GeneralRe: fibbonacci series Pin
Mark Salsbery6-Apr-07 7:20
Mark Salsbery6-Apr-07 7:20 
AnswerRe: fibbonacci series Pin
Bram van Kampen5-Apr-07 14:45
Bram van Kampen5-Apr-07 14:45 
Just for once, and Never Again, and just because it reminds me of My studend days (1974, We had no internet those days, it had not been invented yet)

I give a hint.
A Fibonacii series starts with a 0 and a 1.
You should know how it Generates from there.
I Write it in 'C' You have to translate it to CPP all by yourself.

void FibGenAndPrint(){
static int FibSer[502]={0,1};
int i;
// Generate The list
for(i=1;i<500;i++)FibSer[i+1]=FibSer[i-1]+FibSer[i];
// Print the List
for(i=0;i<500;i++)printf("%i\n",FebSer[i]);
}

One Rule: Attend your lectures in future,
and No further Questions on this topic!





LateNightsInNewry

AnswerRe: fibbonacci series Pin
Ravi Bhavnani5-Apr-07 14:45
professionalRavi Bhavnani5-Apr-07 14:45 
AnswerRe: fibbonacci series Pin
Sathesh Sakthivel5-Apr-07 18:24
Sathesh Sakthivel5-Apr-07 18:24 
AnswerRe: fibbonacci series Pin
toxcct5-Apr-07 22:46
toxcct5-Apr-07 22:46 
AnswerRe: fibbonacci series Pin
cp98765-Apr-07 23:56
cp98765-Apr-07 23:56 
QuestionImage Display Pin
sunny.rana5-Apr-07 9:29
sunny.rana5-Apr-07 9:29 
AnswerRe: Image Display Pin
Mark Salsbery5-Apr-07 9:34
Mark Salsbery5-Apr-07 9:34 
QuestionHelp with MFC controls Pin
Dustin Henry5-Apr-07 9:20
Dustin Henry5-Apr-07 9:20 
AnswerRe: Help with MFC controls Pin
Maximilien5-Apr-07 9:27
Maximilien5-Apr-07 9:27 
AnswerRe: Help with MFC controls Pin
Mark Salsbery5-Apr-07 9:41
Mark Salsbery5-Apr-07 9:41 
GeneralRe: Help with MFC controls Pin
Dustin Henry5-Apr-07 10:32
Dustin Henry5-Apr-07 10:32 
AnswerRe: Help with MFC controls Pin
David Crow6-Apr-07 3:41
David Crow6-Apr-07 3:41 
Question[Urgent] How to create WS_SYSMENU Pin
ksrameshkanth5-Apr-07 8:58
ksrameshkanth5-Apr-07 8:58 
AnswerRe: [Urgent] How to create WS_SYSMENU Pin
Bram van Kampen5-Apr-07 15:11
Bram van Kampen5-Apr-07 15:11 
AnswerRe: [Urgent] How to create WS_SYSMENU Pin
prasad_som5-Apr-07 19:43
prasad_som5-Apr-07 19:43 
GeneralRe: [Urgent] How to create WS_SYSMENU Pin
David Crow6-Apr-07 3:43
David Crow6-Apr-07 3:43 
GeneralRe: [Urgent] How to create WS_SYSMENU Pin
prasad_som6-Apr-07 6:38
prasad_som6-Apr-07 6:38 
QuestionRe: [Urgent] How to create WS_SYSMENU Pin
David Crow6-Apr-07 7:13
David Crow6-Apr-07 7:13 

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.