Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. Which of the following is not a valid variable name declaration?
  2. A.
    float PI = 3.14;
    B.
    double PI = 3.14;
    C.
    int PI = 3.14;
    D.
    #define PI 3.14

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    #define PI 3.14 is a macro preprocessor, it is a textual substitution.


Be The First To Comment