What is the C equivalent for reinterpret_cast? May 28, 2023 by Tarik int *foo; float *bar; // c++ style: foo = reinterpret_cast< int * >(bar); // c style: foo = (int *)(bar);