C | String | Pregunta 2
¿Cuál es la salida del siguiente programa? # include <stdio.h> int main() { char str1[] = «GeeksQuiz»; char str2[] = {‘G’, ‘e’, ‘e’, ‘k’, ‘s’, ‘Q’, ‘u’, ‘i’, ‘z’}; int n1 = sizeof(str1)/sizeof(str1[0]); int n2 = sizeof(str2)/sizeof(str2[0]); printf(«n1 = %d, n2 = %d», n1, n2); return 0; } (A) n1 = 10, n2 = … Continue reading «C | String | Pregunta 2»