Home
>
C++ Discussion
C++ Code
Mita
13 Aug 01, 17:12
Explain the following code written in c++:
const int a =124;
void main()
{
const int *sample();
int *p;
p=sample();
}
const int *sample()
{
return(&a);
}
bloodlamb
15 Sep 01, 00:24
your home work?
bloodlamb
15 Sep 01, 00:24
your home work?