Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Blog
Pointer Example
#include <stdio.h> int main(void) { int *ip = NULL; int i = 10; printf("Address of ip = %u\n", ip); ip = &i; printf("Content of ip = %d\n", *ip); printf("Address of ip = %u\n", ip); return 0; }
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
maximum_template
bitwise manipulation using another function
mohan
B_141104_NotaInterroganteDosPuntos
C_141113_Primo01
C_141106_Factorial
exercises
Lab 6 mb
Project 3 part 2 Book v0.5
Arrays
Please log in to post a comment.