279 views
0 votes
0 votes
# include<stdio.h>

int main()

{

short int c[5];

int i=0;

for(i=0;i<5;i++)

c[i]=400+i;

char*b=(char*)c;

printf("%d",*(b+8));

}

the ouput of the above program,when short int take 2B and character take 1B..Assume memory storage follows liitle endian architecture.

1 Answer

No related questions found