[ create a new paste ] login | about

Link: http://codepad.org/lVXN2HE9    [ raw code | output | fork ]

C, pasted on Jun 14:
1
2
3
4
5
6
7
#include <stdio.h>
int main(void) {
    int values[] = {1, 2, 3, 4, 5, 6, 7};
    int *some_pointer = values;
    printf("%zu %zu\n", sizeof values, sizeof some_pointer);
    return 0;
}


Output:
1
28 4


Create a new paste based on this one


Comments: