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;
}

Comments

Most Visited Post

C Program to Find Largest Odd Number from Array

C Program for Runtime Memory Allocation for Table of Integers

Followers