edited by
535 views
0 votes
0 votes

 

Can anyone explain how will the second parameter gets passed ?

edited by

1 Answer

Related questions

0 votes
0 votes
1 answer
4
Mahbub Alam asked Nov 19, 2018
235 views
#include<stdio.h>void main(){ int i ;for(i=0; i<5; i++)f() ;}void f(){static int x ;x=5 ;x++ ;printf("%d", x);}OUTPUT OF THE FUNCTION IS(A)6,6,6,6,6(B)6,7,8,9,10(C)5,5,5,...