1.

Int main(){char arr[] = {1, 2, 3);char *p = arr;printf(" %d ", sizeof(p));printf("%d", sizeof(arr));getchar(); }​

Answer»

ANSWER:

there are MANY errors

char ARR[]={1,2,3};

'p'is not initialised

the prog should: println

& u need to create object to invoke : getchar() Function

Explanation:

but output is:

error



Discussion

No Comment Found

Related InterviewSolutions