main()
{
int i=0;
while(+(+i--)!=0)
i-=i++;
printf(i);
}
Post New Answer View All Answers
Why do we use int main?
What are dangling pointers in c?
What is #include cctype?
How to declare pointer variables?
why do some people write if(0 == x) instead of if(x == 0)?
How can I prevent another program from modifying part of a file that I am modifying?
Is c is a low level language?
What is the heap in c?
What is a structural principle?
When should the const modifier be used?
Which is the memory area not included in C program? give the reason
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Are comments included during the compilation stage and placed in the EXE file as well?
What is the difference between null pointer and wild pointer?
Is array name a pointer?