retagged by
274 views
0 votes
0 votes

Someone please explain. Function of ‘^’

retagged by

1 Answer

Related questions

0 votes
0 votes
2 answers
2
Overflow04 asked Oct 2, 2022
345 views
#include <stdio.h int main(){ int a[] = {5,3,7,2,4}; int *p = &a[3]; p -= *p; printf("%d ",*p); return 0; } output is 3.Why 2 * sizeof(int) is doene.?
4 votes
4 votes
3 answers
3