Facebook
From ja, 4 Years ago, written in C++.
This paste is a reply to proszeniekrzyczana from ja - view diff
Embed
Download Paste or View Raw
Hits: 340
  1. int count(node*& H)
  2. {
  3.         node *p = H;
  4.         int n = 0;
  5.         while (p!=NULL)
  6.         {
  7.                 n++;
  8.                 p = p->next; //tu mi blad pokazuje
  9.         }
  10.         return n;
  11. }

Replies to liczenie ile jest w liscie elementow rss

Title Name Language When
kochamciedawid ja cpp 4 Years ago.