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
ejemplos bucles basicos
lab7
Vectores: Mayor lista numeros al azar
fun kce
Cvičenie -č.6-UDP
MyBlockQuicksort
C - Append Character to String
Hello World C
Vectores: Llena vector con números al azar
Vectores: Vector inicializado manualmente