int main()
{
char arr[] = {1, 2, 3);
char *p = arr;
printf(" %d ", sizeof(p));
printf("%d", sizeof(arr));
getchar(); }
Answers
Answered by
1
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
Similar questions