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;
}
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
Post a Comment