All pastes #845388 Raw Copy code Copy link Edit

Someone

public unlisted text v1 · immutable
#845388 ·published 2008-01-07 17:44 UTC
rendered paste body
#include <stdio.h> 
int main(void) {
    int x[2];
    printf("Size of an int is %d\n", sizeof(x[0]));
    printf("Distance between x[0] and x[1] is %d\n", &x[1] - &x[0]);
    return 0;
}