Computer Science, asked by leomessi1234, 9 months ago

Consider the following code fragment.


  struct T{T* pt;};

  T t;

  t.pt = new T;

  t.pt->pt = new T;

  delete t.pt;

Which of the following are true?

Answers

Answered by ıtʑFᴇᴇʟɓᴇãᴛ
0

tex

bf/>

struct T{T* pt;};

  T t;

  t.pt = new T;

  t.pt->pt = new T;

  delete t.pt;

Similar questions