Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
A3Q1
//clang 6.0.0 #include <stdio.h> int main(void) { int a = 3; printf("This is the value of a before CallFun: %d\n", a); CallFun(&a); printf("This is the value of a after CallFun: %d\n", a); return 0; } // Address --> value: * // Value --> address: & int CallFun(int *n) { *n = 17; }
run
|
edit
|
history
|
help
0
Příklad 3 min max #define
13 12 2014 20:25
C
Vectores: bidimensionales con sizeof
Herout (67) - 7
C - Append Character to String
Bucles: Triangulo asteriscos izquierdo
Bucles: Suma de n números tecleados por el usuario
prog0
Does fgets() read past a leading newline?