Ask Me Help Desk
>
Computers & Technology
>
Programming
>
Compiled Languages
>
C
> What is the out put of void main() { int const * p=5; printf('%d', (*p)); }
Log in
View Full Version :
What is the out put of void main() { int const * p=5; printf('%d', (*p)); }
Gangadhararao
Feb 1, 2011, 01:10 AM
1. Void main()
{
int const * p=5;
printf("%d",++(*p));
}