Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. cubics

    Pointers + structures problem.

    Have a new problem:( I want to sort the array for gledanost. Here is the whole code so there is no confusion: ///////////////////////////////////// #include <stdio.h> #include <stdlib.h> #include <iostream.h> #include <conio.h> #include <string.h> #include <ctype.h> struct oddaja { char...
  2. cubics

    Pointers + structures problem.

    Ok got it already, tnx for your help.
  3. cubics

    Pointers + structures problem.

    oops a little mistake in copy&paste the second procedure is like this: void izpis(oddaja *vozlisce, int stodd) { oddaja *vmesnik=vozlisce; system(&quot;cls&quot;); int i=1; while(vmesnik!=NULL) { cout << vmesnik -> ime << endl; vmesnik=vmesnik -> naslednji...
  4. cubics

    Pointers + structures problem.

    #include <stdio.h> #include <stdlib.h> #include <iostream.h> #include <conio.h> #include <string.h> #include <ctype.h> struct oddaja { char ime[30]; char tip[30]; char datum[30]; int gledanost; int trajanje; oddaja * naslednji; }; void vpis(oddaja *vozlisce, int& stodd) { int n...
  5. cubics

    Pointers + structures problem.

    #include <stdio.h> #include <stdlib.h> #include <iostream.h> #include <conio.h> #include <string.h> #include <ctype.h> struct oddaja { char ime[30]; char tip[30]; char datum[30]; int gledanost; int trajanje; oddaja * naslednji; }; oddaja *vozlisce=NULL; void vpis(oddaja *vozlisce...

Part and Inventory Search

Back
Top