C Programming and Technical Programming Output

main()
{
char *str = "12345";
printf("%c %c %cn", *str, *(str++), *(str++));
}

Read Solution (Total 7)

C Other Question

main()
{
char *str = "12345";
printf("%c %c %cn", *str, *(str++), *(str++));
}
#include

int main()
{
char str[20]="hello";
char * const p=str;
*p='M';
printf("%sn",str);
return 0;
}