Click here to Skip to main content
15,790,022 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Clang/LLVM support in Visual Studio projects Pin
ForNow31-Jan-23 13:44
ForNow31-Jan-23 13:44 
GeneralRe: Clang/LLVM support in Visual Studio projects Pin
Mircea Neacsu31-Jan-23 13:54
Mircea Neacsu31-Jan-23 13:54 
GeneralRe: Clang/LLVM support in Visual Studio projects Pin
ForNow31-Jan-23 13:56
ForNow31-Jan-23 13:56 
GeneralRe: Clang/LLVM support in Visual Studio projects Pin
jschell2-Feb-23 8:53
jschell2-Feb-23 8:53 
GeneralRe: Clang/LLVM support in Visual Studio projects Pin
Mircea Neacsu2-Feb-23 9:03
Mircea Neacsu2-Feb-23 9:03 
GeneralRe: Clang/LLVM support in Visual Studio projects Pin
jschell3-Feb-23 6:01
jschell3-Feb-23 6:01 
QuestionInverted linked list in C Pin
Amine Saber28-Jan-23 22:23
Amine Saber28-Jan-23 22:23 
AnswerRe: Inverted linked list in C Pin
Richard MacCutchan28-Jan-23 23:42
mveRichard MacCutchan28-Jan-23 23:42 
There are two issues:
1. Where you create the cellule structures:
C++
for(i=0;i<n;i++)
{
    p=(struct cellule *)malloc(sizeof(struct cellule));
    scanf("%d",&(*p).a);
    if(i==0)
        liste = p;
    else
        (*q).suivant=p;
    q=p;
}
q->suivant = NULL; // Mark the last entry as having no follower

2. Your recursive method
C++
void affichage (struct cellule *liste){
    if (liste ==NULL) // this just needs to check for the end of the list
    {
        return; // no more entries
    }
    affichage(liste->suivant); // process the next entry in the list
    printf(" %d ",liste->a);   // on return print the current entry's value
}

QuestionRe: Inverted linked list in C Pin
David Crow29-Jan-23 13:56
David Crow29-Jan-23 13:56 
QuestionMessage Closed Pin
24-Jan-23 11:52
Member 1496877124-Jan-23 11:52 
AnswerRe: Basic C++ - can you explain the difference / function of each definition ? Pin
k505424-Jan-23 12:10
mvek505424-Jan-23 12:10 
GeneralMessage Closed Pin
24-Jan-23 13:09
Member 1496877124-Jan-23 13:09 
GeneralRe: Basic C++ - can you explain the difference / function of each definition ? Pin
k505424-Jan-23 13:32
mvek505424-Jan-23 13:32 
GeneralRe: Basic C++ - can you explain the difference / function of each definition ? Pin
Richard MacCutchan25-Jan-23 0:49
mveRichard MacCutchan25-Jan-23 0:49 
AnswerRe: Basic C++ - can you explain the difference / function of each definition ? Pin
Graham Breach24-Jan-23 12:30
Graham Breach24-Jan-23 12:30 
AnswerRe: Basic C++ - can you explain the difference / function of each definition ? Pin
Richard MacCutchan24-Jan-23 23:26
mveRichard MacCutchan24-Jan-23 23:26 
AnswerRe: Basic C++ - can you explain the difference / function of each definition ? Pin
jschell25-Jan-23 6:08
jschell25-Jan-23 6:08 
GeneralRe: Basic C++ - can you explain the difference / function of each definition ? Pin
Richard MacCutchan25-Jan-23 6:21
mveRichard MacCutchan25-Jan-23 6:21 
AnswerRe: Basic C++ - can you explain the difference / function of each definition ? Pin
charlieg28-Jan-23 9:57
charlieg28-Jan-23 9:57 
GeneralMessage Closed Pin
29-Jan-23 4:57
Member 1496877129-Jan-23 4:57 
GeneralRe: Basic C++ - can you explain the difference / function of each definition ? Pin
charlieg1-Feb-23 5:20
charlieg1-Feb-23 5:20 
QuestionQueryThreadCycleTime, QueryProcessCycleTime: what do these number mean? Pin
peterchen24-Jan-23 1:34
peterchen24-Jan-23 1:34 
AnswerRe: QueryThreadCycleTime, QueryProcessCycleTime: what do these number mean? Pin
Richard MacCutchan24-Jan-23 1:44
mveRichard MacCutchan24-Jan-23 1:44 
AnswerRe: QueryThreadCycleTime, QueryProcessCycleTime: what do these number mean? Pin
CPallini24-Jan-23 3:02
mveCPallini24-Jan-23 3:02 
GeneralRe: QueryThreadCycleTime, QueryProcessCycleTime: what do these number mean? Pin
Richard MacCutchan24-Jan-23 3:20
mveRichard MacCutchan24-Jan-23 3:20 

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.