Unelte utilizator

Unelte site


Sidebar

playground:playground

Aceasta e o versiune anterioară a paginii.


PlayGround

#include <iostream>
#include <conio.h>
using namespace std;
 
struct Element { 
  int valoare; 
  Element* urmator, * anterior; 
}; 
 
int main() {
    Element e;
    e.valoare = 2;
    e.urmator = NULL;
    e.anterior = NULL;
 
    cout<<endl<<e.valoare;
    getch();
    return 0;
}
playground/playground.1399737551.txt.gz · Ultima modificare: 2014/05/10 18:59 de către fbratiloveanu