xref: /petsc/src/benchmarks/sizeof.c (revision 4ab46dc2d3bbcd7c46775f6441b2d777c27ce175)
1 #include <stdio.h>
2 
3 int main()
4 {
5 
6   printf("Long Double %d double %d int %d ptr %d\n",sizeof(long double),sizeof(double),sizeof(int),sizeof(int*));
7   return 0;
8 }
9