The value of p after execution of the following program will be:
int new(int t) { static int cal=0; cal=cal+t; return(cal); } main() { int t,p; for(t=0;t<=4;t++) p= new(t); }
and p = new(t)
at the end of the execution
p = new(4)
p = 10 answer