โช Choose the correct option.
What is the output of the following problem ?
#include
int main()
{
char *str = "12345";
printf("%c %c %c
", *str, *(str++), *(str++));
return 0;
}
#include
int main()
{
char *str = "12345";
printf("%c %c %c
", *str, *(str++), *(str++));
return 0;
}