What is the output of the following c++ program?
#include<iostrem>
  using namespace std;
         int main()
          {
             int x;
             int *p;
             x = 7;
             p = &x;
             count << *p;
             return 0:
            }

Posted on by