C | String | Questão 15
Preveja a saída do programa a seguir, suponha que um caractere leve 1 byte e o ponteiro leve 4 bytes.
#include <stdio.h>
int main()
{
char *str1 = "GeeksQuiz";
char str2[] = "GeeksQuiz";
printf("sizeof(str1) = %d, sizeof(str2) = %d",
....