Exercise C(d) in Hindi | Example of using Functions with Pointers
Duration: 12:35 Min | Sep 03, 2023
Let us C Solutions of Chapter 9 Pointers of Exercise C (d): Given three variables x, y, z write a function to circularly shift their values to right. In order words if x=5, y=8, z=10, after circular shift y=5, z=8, x=10. Call the function with variables a, b, c to circularly shift values.