[ create a new paste ] login | about

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

C++, pasted on May 16:
1
2
3
4
5
6
7
8
9
#include<stdio.h>

typedef struct { /*int a;*/} S;

int main(){
    S s;
    printf("%d\n", sizeof(s));
    return 0;
}


Output:
1
1


Create a new paste based on this one


Comments: