#include #include struct Coord { double x, y; bool visited; }; int main() { printf( "The memory required by 'struct Coord' is %d\n", sizeof( struct Coord ) ); return 0; }