Pregunta de entrevista de NVIDIA

Function to find the size of a datatype using different approaches(without using any built-in function).

Respuestas de entrevistas

Anónimo

17 sep 2014

I gave the answer using bit operators.

Anónimo

21 sep 2017

#define mysizeof(type) ((typeof(type)*(0)) + 1) - ((typeof(type)*)0)