Home » C Programming » Variables » Question
  1. Which among the following is the correct syntax to declare a static variable register?
    1. We cannot use static and register together
    2. static register n;
    3. register static n;
    4. Both static register n; and register static n;
    5. None of these
Correct Option: A

We cannot use static and register together



Your comments will be displayed only after manual approval.