Following the out put c++ programing
Answers
Answered by
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. ...
- Find the output of following C++ progra
Similar questions