Question: Show the output of the following C program? #include void xyz (int *ptr) { *ptr - 30; } int main() { int y =
Show the output of the following C program? #include void xyz (int *ptr) { *ptr - 30; } int main() { int y = 20; xyz (&y); printf("%d", y); return 0;
Step by Step Solution
There are 3 Steps involved in it
The C program youve shown is designed to demonstrate the concept of pointers and function calls with ... View full answer
Get step-by-step solutions from verified subject matter experts
