JAMIA 2023 — Computer PYQ
JAMIA | Computer | 2023Consider the following C language declaration
&statement. Which statement is erroneous?
float f1=9.9;
floatf2 =66;
const float *ptrF1;
float*const ptrF2=&f2;
ptrF1=&f1;
ptrF2++;
ptrF1++;

