Home » C Programming » Variables » Question
  1. Which of following is not accepted in C?
    1. static int function(int); //parameter as static
    2. static static int p; //p static variable prefixed with static
    3. static p = 15; //static as
    4. All of above
    5. None of these
Correct Option: B

static static int p; //p static variable prefixed with static



Your comments will be displayed only after manual approval.