Computer Science, asked by Shiv098, 8 months ago

Following the out put c++ programing

Answers

Answered by brownie24
1

Explanation:

Find the output of following C++ program. #include<iostream> #include<stdlib.h> using namespace std; int main() { float x=5.999; float *y,*z; y=&x; z=y; cout<<x<<","<<*(&x)<<","<<*y<<","<<*z<<"\n"; return 0; } ...

Find the output of following C++ program. ...

  1. Find the output of following C++ progra
Similar questions