Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
A_141212_HistoriaDePunteros
//Title of this code #include <stdio.h> int main(void) { long a[10]; short b[10]; long *p = a; short i; printf("\n a: %p\n", a); for(i = 0; i < 10 ; i++) { printf("&a[%hd]: %p\n", i, &a[i]); } printf("\n\n"); printf("\n b: %p\n", b); for(i = 0; i < 10 ; i++) { printf("&b[%hd]: %p\n", i, &b[i]); } printf("\n\n"); for(i = 0 ; i < 10 ; i++) { printf("(p + %hd) = %p\n", i, p + i); } return 0; }
run
|
edit
|
history
|
help
0
WrongWay reversible iterator Copyright(C) 2016 Henry Kroll III www.thenerdshow.com
FUNTION3
Lab 11v0.6
A_141117_Primo02
Lior Yehieli Lesson
Print Micro Seconds
a
Michael Bean's Spring 2017 Lab 3 v1.1
Project 3 part 2 Book v1.1
Memory leak