main()
{
int i=0;
while(+(+i--)!=0)
i-=i++;
printf(i);
}
Post New Answer View All Answers
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
What are the two forms of #include directive?
What is a static variable in c?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
i got 75% in all semester am i eligible for your company
What is the difference between strcpy() and memcpy() function in c programming?
Differentiate between declaring a variable and defining a variable?
What are the advantage of c language?
What are local static variables? How can you use them?
How are portions of a program disabled in demo versions?
What is the difference between array and structure in c?
Write a program to find factorial of a number using recursive function.
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
Can an array be an Ivalue?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }