- A 4
- B 8
- C 1
- D Run time error
C Programming Language MCQ Operators and Enums in C Language
⚠ Report ✓ Question Verified Copy Link
void main()
{
int x = 4;
int *p = &x;
int *k = p++;
int r = p - k;
printf("%d", r);
}
Learn More MCQ Questions from C Programming Language MCQ Operators and Enums in C Language