What is the output?
#include
int main()
{
char*s="programming ";
char*p=s;
printf(" %c,%c",*(p+3),s[3]);
return 0;
}
Answers
Answered by
2
tex
/bf
int main()
{
char*s="programming ";
char*p=s;
printf(" %c,%c",*(p+3),s[3]);
return 0;
}
Similar questions