Computer Science, asked by kasireddyrajesh166, 7 months ago

let int a[5]={1,3,5,7,9} what is the output ? printf("%d",*(a+b))​

Answers

Answered by vivek7666
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 rohitkhajuria90
0

Answer:

Incomplete question

Please write the complete question.

Similar questions