COMP2113
COMP2113_ENGG1340 Programming technologies and Computer programming II [Section 2BC] [2023]
Loading...
Searching...
No Matches
struct_size.cpp File Reference
#include <iostream>
Include dependency graph for struct_size.cpp:

Go to the source code of this file.

Classes

struct  structA
 
struct  structB
 

Functions

int main ()
 

Function Documentation

◆ main()

int main ( void )

Definition at line 15 of file struct_size.cpp.

15 {
16 cout << sizeof(struct structA) << " " << sizeof(struct structB) << endl;
17}