#include <stdio.h>int main(){int i = 97, *p = &i;foo(&p);printf("%d ", *p);return 0;}void foo(int **p){int j = 2;*p = &j;printf("%d ", **p);}
Find the output of the following program?#include<studio.h>int main(){struct tree{int a;int b;};struct sookshmas sookshmas={10};printf("%d",sookshmas.w);printf("%d",sookshmas.h);return 0;}