Question: 1.) 2.) 3.) 4.) int Given the following code 01. int main() 02. { 03. num; 04. int count; 05. float salary; 06. 07. int
1.)

2.)

3.)

4.)

int Given the following code 01. int main() 02. { 03. num; 04. int count; 05. float salary; 06. 07. int *numptr; // declare a pointer variable to an integer 08. int *countptr; // declare a pointer variable to an integer 09. float *salaryptr; // declare a pointer variable to a float 10. 11. numptr = &count; 12. countptr = # 13. salaryptr = &salary; 14. 15. *numptr = 6; 16. *countptr = 980; 17. *salaryptr = 3200; 18. 19. cout
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
