312 views
0 votes
0 votes

member selection via pointer  

is  P --->  C

can we write it in terms of normal pointer  , if yes then what it is ?

is it written like (*P ) . C  ??

1 Answer

Related questions

3 votes
3 votes
4 answers
1
Ahsanul Hoque asked Apr 5, 2018
4,411 views
Assume sizeof an integer and a pointer is 4 byte. Output?#include<stdio.h #define R 10 #define C 20 int main() { int *p[R][C]; printf("%d",sizeof(*p)); printf("%d",sizeof...
1 votes
1 votes
2 answers
2
nish kim asked Sep 2, 2017
420 views
#include<stdio.h>int main() { int const * i= 5; printf("%d\n", ++(*i));} a. 5b. garbage valuec. compilation errord.runtime error
1 votes
1 votes
1 answer
3
srestha asked Jul 27, 2017
414 views
Analyze what is happening and why?int *ptr=(int*)0X12341230; int *ptr2=((int*)(((char*)ptr)+1));char *ptr=(char*) 0X12341230; void *ptr2=ptr+1;
3 votes
3 votes
2 answers
4