// // Torbert, 16 Oct 2015 // #include #include // typedef struct Node { int row ; int col ; // struct Node* next ; // } ListNode ; // int main( int argc , char* argv[] ) { ListNode* ptr = NULL ; // ptr = (ListNode*)malloc( sizeof(ListNode) ); // (*ptr).row = 7 ; ptr -> col = 0 ; ptr -> next = NULL ; // printf( "%d\n" , ptr->row ) ; printf( "%d\n" , ptr->col ) ; // return 0 ; } // // end of file //