Home » C Programming » Variables » Question
  1. Which of the following declaration is not supported by C?
    1. String str;
    2. float str = 4e3;
    3. Both String str; & float str = 4e3;
    4. char *str;
    5. None of these
Correct Option: A

It is legal in Java, but not in C.



Your comments will be displayed only after manual approval.