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

int main()
{
int x = (2,3,4);
int y = 9,10,11;
printf("%d %d",x,y);
}
what would be the output?

Answer Posted / samrat

Ans is: 4,9

For example

int i = (x, y); // stores y into i
int i = x, y; // stores x into i

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is data type long in c?

1069


Write a program to reverse a string.

1063


What are external variables in c?

1089


which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above

1705


Write a program with dynamically allocation of variable.

1107


i have a written test for microland please give me test pattern

2721


What is formal argument?

1123


What are the __date__ and __time__ preprocessor commands?

1092


write a programming in c to find the sum of all elements in an array through function.

2157


void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }

1708


What is merge sort in c?

1036


What is || operator and how does it function in a program?

1072


What is the difference between memcpy and memmove?

1009


Why c is called free form language?

1015


What is New modifiers?

1105