Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Blog
ptr_to_ptr
//gcc 5.4.0 #include <stdio.h> //#define aaddress (*((int*)0x601038)) int a=20, b=15, **ptr_to_ptr, *ptr; int main(void) { ptr=&b; b=45; printf("Value:%u, Address:%p\n",b,ptr); ptr=&b; ptr_to_ptr=ptr; *ptr_to_ptr=50; printf("Value:%u, Address:%p\n",*ptr_to_ptr,ptr_to_ptr); ptr=&b; ptr_to_ptr=&ptr; **ptr_to_ptr=60; printf("Value:%u, Address:%p",**ptr_to_ptr,*ptr_to_ptr); return 0; }
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
Michael Bean's Spring 2017 Lab 3 v1.1
lab9tho
B_141121_factorial02
main.c
C_141127:MatricesUnSoloIndice
decimalespi
150116_PrimoFactorial
BSEARCH() WITH STRUCT
Función quicksort para strings
Simple interest
Please log in to post a comment.