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
first C code
32bit
Quiz4
Multiple if statement v0.8
SAI_1-3.c
14th Dec Project1 v0.2
Calculate Area of Circle
tickeParsing.c
maximum_template
strrev