When i run this code.
#include void moo(int a, int *b); int main() { int x; int *y; x = 1; y = &x; printf(\"Addr
To print the address of a variable, you need to use the %p format. %d is for signed integers. For example:
%p
%d
#include void main(void) { int a; printf("Address is %p:",&a); }