Neigyl R. Noval

Resultados 1 preguntas formuladas por Neigyl R. Noval

¿Por qué sizeof(x++) no incrementa x?

10
respuestas
530
votos
34.8k
vistas

Aquí está el código compilado en Dev-C++ en Windows: #include <stdio.h> int main() { int x = 5; printf("%d and ", sizeof(x++)); // note 1 printf("%d\n", x); // note 2