[ create a new paste ] login | about

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

C, pasted on Jan 29:
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>



int main(void)
{
  printf("%zu\n", sizeof(int));
  printf("%zu\n", sizeof(struct { int foo:1; int bar:1; }));
  return 0;
}


Output:
1
2
4
4


Create a new paste based on this one


Comments: