โช Choose the correct option.
What will be the output of the following program on GCC compiler?
#include
#include
int main() {
int i, l;
char *x="Alice";
l= strlen(x);
for(i=0; i printf("%c",*x);
x++;
}
return 0;
}