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 a=2,b=3,c=4;
printf("a=%d,b=%d\n",a,b,c);
what is the o/p?

Answer Posted / sriharsha karanth

a=2
b=3

Is This Answer Correct ?    1 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is swift based on c?

1153


what is the structure pointer?

2180


What is a const pointer in c?

1182


Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......

2235


What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?

1294


What is the difference between local variable and global variable in c?

1293


Explain how can I prevent another program from modifying part of a file that I am modifying?

1142


How do you initialize pointer variables?

1153


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

6396


What are the keywords in c?

1177


Write a program to implement queue.

1174


What are the different types of pointers used in c language?

1103


What are valid signatures for the Main function?

1294


Is there a way to compare two structure variables?

1172


Write a code to determine the total number of stops an elevator would take to serve N number of people.

1310