Which of following is not accepted in C?
Posted: Wed Jul 13, 2022 7:53 pm
a) static a = 10; //static as
b) static int func (int); //parameter as static
c) static static int a; //a static variable prefixed with static
d) all of the mentioned
b) static int func (int); //parameter as static
c) static static int a; //a static variable prefixed with static
d) all of the mentioned