I looked at the websides you guys gave me still could not find the answers!!!
1. How do you pass an array to a function? example?
2. how do i declare a floating point?
3. What is inderection when talking about pointers?
4. Given the following piece of code, what does cout show?
int*p, i = 15;
p = &I;
*p = 20;
cout<< i ;
5. can a particular array contain integers, floats, and characters?
6. What is the value of 2*3 + 7%2-15?
1. How do you pass an array to a function? example?
2. how do i declare a floating point?
3. What is inderection when talking about pointers?
4. Given the following piece of code, what does cout show?
int*p, i = 15;
p = &I;
*p = 20;
cout<< i ;
5. can a particular array contain integers, floats, and characters?
6. What is the value of 2*3 + 7%2-15?
Comment