Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

301
Vistas
Is this expression statement in a C programming exam question undefined behavior?

In a C programming exam question, I found this:

int a, b=0, x=4, y=5;
a=((a=x%y?b+1:y--)&&(x-=y))||(y-=6);

Is this expression UB?

I would say no, because of the sequence point (SP) between logic operators and between expressions of ?:. So, to my understanding, the horrible hack would be evaluated correctly as:

      x%y                             this gives 4 (exp is true)
    a=    b+1                         this assigns 1 to a and we have a SP (exp is true)
              y--                     this is not evaluated
                     x-=y             this assigns -1 to x and we have a SP (exp is true) 
                              y-=6    this is not evaluated
a=                                    this assigns the result of the || operator to a (1)

Finally a=1, x=-1, nothing else is changed. Any mistake?

over 4 years ago · Santiago Trujillo
2 Respuestas
Responde la pregunta

0

Is this expression statement in a C programming exam question undefined behavior?

Is this expression UB?

No.

Any mistake?

No.

I wanted to write some text here, but you have already written the explanation... Nothing for me to do. Notes: There is also a sequence point after ?. Even if y-- would be evaluated, because && is a sequence point, it still would be fine.

over 4 years ago · Santiago Trujillo Denunciar

0

#include <stdio.h>

int main() {
    int a, b=0, x=4, y=5;
    a=((a=x%y?b+1:y--)&&(x-=y))||(y-=6);
    printf("a=%i\nb=%i\nx=%i\ny=%i\n", a,b,x,y);
    return 0;
}

OUTPUT:

a=1
b=0
x=-1
y=5

So I think you are right about everything but I do not think it counts as undefined behavior.

over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda