¿Qué imprime el siguiente programa en C?
$include <stdio.h> int f(int x, int *py, int **ppz) { int y, z; **ppz += 1; z = **ppz; *py += 2; y = *py; x += 3; return x + y + z; } void main() { int c, *b, **a; c = 4; b = &c; a = &b; printf( "%d", f(c,b,a)); getchar(); }
(A) 18
(B) 19
(C) 21
(D) 22
Respuesta: (B)
Explicación: consulte la pregunta 1 de https://www.geeksforgeeks.org/c-language-set-5/
Cuestionario de esta pregunta
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA