Write a C++ program the includes the declaration statements int num, count;
long date;
float yield;
double price;
Have the program use the address operator and the cout object to display the addresses that correspond to each variable.
1
Expert's answer
2013-04-22T11:41:46-0400
#include<iostream> using namespace std;
int main() { int num, count; long date; float yield; double price;
Comments
Leave a comment