let int a[5]={1,3,5,7,9} what is the output ? printf("%d",*(a+b))
Answers
Answered by
0
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;
}
Answered by
0
Answer:
Incomplete question
Please write the complete question.
Similar questions