what will be the output?
#includestdio.h
int main(){
char arr[15] = "independent students";
int *ptr;
ptr = arr;
printf("%c",ptr[1]);
return 0;
}


Posted on by