lundi 20 mai 2019

Can these C codes be refactored this way?

Is

if (i == 1) {
   printf("a\n");
   printf("b\n");
}

the same as

if (i == 1)
    printf("a\n");
    printf("b\n");

Can the codes be refactored this way?

Aucun commentaire:

Enregistrer un commentaire