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.)

1.) 2.) 3.) 4.) int Given the following code 01. int main()

2.)

02. { 03. num; 04. int count; 05. float salary; 06. 07.

3.)

int *numptr; // declare a pointer variable to an integer 08. int

4.)

*countptr; // declare a pointer variable to an integer 09. float *salaryptr;

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!