What is the output of the following C++ code?

p = list;

while (p!=NULL)
cout << p->info << " ";
p = p->link;
cout << endl;

1 answer

That's code to walk through a linked list. I can't say the exact output because I can't see what the variable "list" is.

Also, there are missing braces after the while statement. If the program is run without braces, and list is not null, the iteration will infinitely loop and print the first element over and over.
Similar Questions
  1. What will be the output of below c++ code.//c++ code for auto increment/decrement operators. #include<iostream> using namespace
    1. answers icon 1 answer
    1. answers icon 1 answer
  2. //c++ code for auto increment/decrement operators.#include<iostream> using namespace std; int main() { output a=6 int a=5, b, c,
    1. answers icon 1 answer
  3. ineed help with c++.i am using code blocks and i have a problem with the compiler. when I run this code ¡é # include
    1. answers icon 3 answers
more similar questions