What substitution should be made to //-Ref such that ptr1 points to variable c in the following C code?
#include int main(){ int a = 1, b = 2, c = 3; int *ptr1 = &a; int **sptr = &ptr1; //-Ref}
#include int main(){ int a = 1, b = 2, c = 3; int *ptr1 = &a; int **sptr = &ptr1; //-Ref} What substitution should be made to //-Ref such that ptr1 points to variable c in the following C code?
#include <stdio.h>int main(){ int a = 1, b = 2, c = 3; int *ptr1 = &a; int **sptr = &ptr1; //-Ref} Correct Answer *sptr = &c;
মোঃ আরিফুল ইসলাম
Feb 20, 2025