What will be the output of the below pseudo-code?
1 b[4]={5,1,32,4};
2 k=++b[1];
3 l=b[1]++;
4 m=b[k++];
5 print k, l, m
I
6
Answers
Answered by
2
Answer:
include <stdio.h>
int main()
{
int arr[5];
// Assume that base address of arr is 2000 and size of integer
// is 32 bit
arr++;
printf("%u", arr);
return 0;
}
Similar questions