OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
size.c File Reference
#include <stdio.h>

Go to the source code of this file.

Functions

 main ()

Function Documentation

◆ main()

main ( )

Definition at line 2 of file size.c.

3{
4 printf("ISIZE=%d\nSSIZE=%d\nDSIZE=%d\nCSIZE=%d\nZSIZE=%d\n",
5 sizeof(int), sizeof(float), sizeof(double),
6 2*sizeof(float), 2*sizeof(double));
7}