Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

C/C++ Pointers

int* pc, c;
c = 5;
pc = &c;
printf("%d", *pc);   // Output: 5
Source by www.programiz.com #
 
PREVIOUS NEXT
Tagged: #Pointers
ADD COMMENT
Topic
Name
3+1 =