hi,
1) what q signify and how can it be of any use?
int* p = 0;
int* &q = *p;
2) what does it do?
int main()
{
return main;
}
It compiles with gcc (not g++) and running the executable does not do anything without error.
Thanks.
hi,
1) what q signify and how can it be of any use?
int* p = 0;
int* &q = *p;
2) what does it do?
int main()
{
return main;
}
It compiles with gcc (not g++) and running the executable does not do anything without error.
Thanks.
Number - 2
the main function returns the address of main as its exit value..
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.