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...

#include<stdio.h>
void main()
{
int a,b,c;
a=b=c=1;
c=++a || ++b && ++c;
printf("%d\t%d\t%d",a,b,c);
}

Answer Posted / biren

a=2 b=1 c=1
why plz tell me

Is This Answer Correct ?    4 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How is = symbol different from == symbol in c programming?

1105


What is pointer and structure in c?

1279


What is string length in c?

1159


Should a function contain a return statement if it does not return a value?

1138


How can I write functions that take a variable number of arguments?

1189


What is keyword in c?

1063


Are the expressions * ptr ++ and ++ * ptr same?

1210


What is the difference between malloc() and calloc()?

1983


What is the value of a[3] if integer a[] = {5,4,3,2,1}?

1148


How can I open files mentioned on the command line, and parse option flags?

1104


Without Computer networks, Computers will be half the use. Comment.

2356


What is the easiest sorting method to use?

1243


Is struct oop?

1061


what are bit fields? What is the use of bit fields in a structure declaration?

2202


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

1509