Computer Science, asked by kousalyas, 1 year ago

#include<stdio.h>

int main()

{

char *ptr;

char string[] = "How are you?";

ptr = string;

ptr += 4;

printf("%s",ptr);

return 0;

}

(a) How are you?

(b) are you?

(c) are

(d) No output

Answers

Answered by Rumi123456789
1
(d) No output..........!!!!!!!!

kousalyas: can u explain how
kousalyas: but in other site they answered "are you~"
kousalyas: okk thank u
Answered by sheru11
5
I think No output ..........
Hope it's helpful

kousalyas: explanation
Similar questions