Home MCQs SSC Computer Science Question #1117
Back to Questions
SSC Computer Science QUESTION #1117
Question 1
Which of the following is the false statement in C language?
  • static a=10;
  • static int func (int);
  • static static int a;✔️
  • None of these
Correct Answer Explanation
In C, you cannot use the same storage class specifier multiple times for a single variable declaration. static static is syntactically invalid.