Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
B_141212_RolloPunteros
//Title of this code #include <stdio.h> int main(void) { long a[5]; short b[5]; long*p = a; short i; printf("\n\na .... %p\n", a); for(i = 0 ; i < 5 ; i++) { printf("&a[%hd]: %p\n", i, &a[i]); } printf("\n\nb .... %p\n", b); for(i = 0 ; i < 5 ; i++) { printf("&b[%hd]: %p\n", i, &b[i]); } printf("\n\n"); for(i = 0 ; i < 5 ; i++) { printf("p + %hd: %p\n", i, p + i); } return 0; }
run
|
edit
|
history
|
help
0
funcion dar vuelta numero
Project 3 Part 1 v1.4
addition
TeleBook2
Bitex
a3 commented
Lab 11 v1.0
etapa final de pregunta 2
My first reevers C 2darryp
printf