Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Address.c
//gcc 5.4.0 #include <stdio.h> int main(void) { char ch1='A',ch2='B'; int n1=100,n2=100000; printf("value of ch1=%c,\t",ch1); printf("address of ch1=%p\n",&ch1); printf("value of ch2=%b,\t",ch2); printf("address of ch2=%p\n",&ch2); printf("value of n1=%d,\t",n1); printf("address of n1=%p\n",&n1); printf("value of n2=%d,\t",n2); printf("address of n2=%p\n"); return 0; }
run
|
edit
|
history
|
help
0
b=1,c=1
addition
macaddress
Swap.c
c4
Spring 2017 Project 2 v.03
Project 5 v0.11
Pointer arithmatic
menu
hwkpractice