Posts

Showing posts with the label Print Address of Variable

My Subject Blog

C Program to Print Address of Variable

/* Write a program to print an address of a variable.  */ #include <stdio.h> int main(void)  { int i=10; printf("Address of I is %u",&i); return 0; }

Followers