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
sample
150116_OrdenMatriz
Length width.c
Float data type.c
Lab 6 v1
ques.1
pointer example 2
AC_setting_example
A_141212_HistoriaDePunteros
Factorial Descompuesto en Potencias de Numeros Primos