Computer Science, asked by bharti1330, 1 year ago

How do you print an address ?

Answers

Answered by Raghavrtech
0

just click on print and your printout come out

Answered by salmaaaa786
0

to print the address of a variable you need to use the %p format. %do is for signed integers.for example :

#include <stdio.h>

void main (void)

{

int a ;

print f ( "address is %p : " , &a

) ;

}

Similar questions