Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

main()
{
int i=0;
while(+(+i--)!=0)
i-=i++;
printf(i);
}

Answer Posted / vignesh1988i

the answer will be -1

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

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.

1981


What are the two forms of #include directive?

1167


What is a static variable in c?

1121


Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?

2580


i got 75% in all semester am i eligible for your company

2230


What is the difference between strcpy() and memcpy() function in c programming?

1086


Differentiate between declaring a variable and defining a variable?

1044


What are the advantage of c language?

1054


What are local static variables? How can you use them?

1148


How are portions of a program disabled in demo versions?

1296


What is the difference between array and structure in c?

1169


Write a program to find factorial of a number using recursive function.

1123


How can I check whether a file exists? I want to warn the user if a requested input file is missing.

1148


Can an array be an Ivalue?

1092


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); }

1436