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>
main()
{
int a=1;
int b=0;
b=++a + ++a;
printf("%d %d",a,b);
}

Answer Posted / sas

2 5

Is This Answer Correct ?    0 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a code to remove duplicates in a string.

999


what is the syallabus of computer science students in group- 1?

2297


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

6238


Where static variables are stored in memory in c?

968


Is it possible to pass an entire structure to functions?

962


What does the format %10.2 mean when included in a printf statement?

1623


Explain what is page thrashing?

1068


write a c program to print the next of a particular no without using the arithmetic operator or looping statements?

3890


How can I send mail from within a c program?

1002


State two uses of pointers in C?

1025


What are pointers really good for, anyway?

1033


Are enumerations really portable?

1000


what is use of malloc and calloc?

1870


What is the benefit of using an enum rather than a #define constant?

1201


What is the explanation for cyclic nature of data types in c?

1165