Program to print Memory Location of an Array


#include<iostream.h>
#include<conio.h>
void main( )
{
    int number [ ] = { 11, 22, 33, 44, 55 } ;
    cout<<" Number = "<< number ;
    getch( );
}

No comments:

Post a Comment