C Data Types, Variables & Storage Classes

Time: 00:00:00
0
Attempted
22
Not Attempted
0
Marked For Review
0
Attempted & Reviewed

Question 1 of 22

What will be the output of the following C code?
void main()
{
int t;
char *pc=(char *)0;
float *pf=(float *)0;
t=(int)(pc+1) + (int)(pf+1);
printf(%d,t);
}

Select Your Answer:

All Questions

Attempted
Not Attempted
Marked for Review
Attempted & Reviewed
Current