xref: /petsc/src/benchmarks/sizeof.c (revision 66f23a84efcc7c5fe0ec799b1440a92d6318fb14)
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