Question 581: What will be the output of the program in TurboC?#include<stdio.h> int fun(int **ptr); int main() { int i=10, j=20; const int *ptr = &i; printf(" i = %5X", ptr); printf(" ptr = %d", *ptr); ptr = &j; printf(" j = %5X", ptr); printf(" ptr = %d", *ptr); return 0; }
tcs
wipro
infosys
general
aptitude
const
No answer description is available.Let's discuss.