Home » C Programming » Pointers » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    int main()
    {
    double *p = (double *)150;
    p = p + 5;
    printf("%u", p);
    }
    1. 150
    2. 160
    3. 170
    4. 180
    5. 190
Correct Option: E

190



Your comments will be displayed only after manual approval.