Question: Please answer in detail What is the difference between the codes below? What is the result after compiling and running? #include void fun(int x) {

 Please answer in detail What is the difference between the codes

Please answer in detail

What is the difference between the codes below? What is the result after compiling and running? #include void fun(int x) { x = 30; } #include void fun(int *ptr) { *ptr = 30; } int main() { int y = 20; fun(y); printf("%d", y); int main() { int y = 20; fun(&y); printf("%d", y); return 0; return 0; } }

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!