Bhuwan Sharmabhuwan.hashnode.devยทSep 22, 2024C Tutorial -6 (Pointers, pass by value, pass by reference)#include<stdio.h> #include<stdlib.h> // Q.2 Passing a pointer j to a function and printing its address. void print_address(int* j){ printf("%d\n", j); printf("%d", *j); } // Q.3 Program to change the value of a variable to ten times of its current va...CAdd a thoughtful commentNo comments yetBe the first to start the conversation.