Search:

Type: Posts; User: giannis1990

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    1,808

    break was the issue after all,i wrote one break...

    break was the issue after all,i wrote one break in every if loop an the problem is solved.So now the question is why "break"?
  2. Replies
    3
    Views
    1,808

    delete a node from linked list problem

    arxeio=first; s=0;
    while(arxeio!=NULL)
    {
    if (arxeio->aStudent->idNumber==iddel)
    {
    printf("erasing id...
  3. Replies
    8
    Views
    1,842

    Unfortunatelly typedef,ClassNodeType is part of...

    Unfortunatelly typedef,ClassNodeType is part of the exercise,i dont see any reason either to make things complicated!I write code with devC++ beacuse this is the program we use in my class,malloc...
  4. Replies
    8
    Views
    1,842

    print linked list problem

    #include<stdio.h>#include<stdlib.h>
    #include<string.h>
    #include<stdio.h>
    #include<stdlib.h>


    struct StudentRecord {
    char *courseName;
    float Mark;
    struct StudentRecord *next;
Results 1 to 4 of 4