edited by
539 views

1 Answer

Best answer
1 votes
1 votes

. Actual parameters contain the values that are passed to a function and receive results. Formal parameters are those which store passed values of actual parameters..

for example

void main()

{ int y=9, z=8;

sum(y,z)

}

sum(i,k)

{.....

}

here y,z are actual paramaters and i,k are formal parameters

//////////// we can not have storage classes identifier in arguments  becoz in arguments..either we pass the value or we pass the pointer.....so pointer cannot be of storage  classses.....and values also cannot be of storage class..//////storage classes are meaningful only if there used in concern of variables...

selected by

Related questions

1 votes
1 votes
1 answer
2
Sparsh-NJ asked Jul 15, 2023
357 views
Can an array store elements of different storage classes?
1 votes
1 votes
2 answers
3
someshawasthi asked Nov 30, 2022
696 views
find the output of following programmain(){ extern int a; a=5; printf("%d",a);}