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