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

void main()
{int i=2;
printf("%d%d%d",i,++i,i++);
getch();
}

Answer Posted / swetha

232

Is This Answer Correct ?    8 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are identifiers in c?

1189


Define recursion in c.

1262


This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory

1253


Write a program to check whether a number is prime or not using c?

1040


write a program to find out prime number using sieve case?

2077


Can we compile a program without main() function?

1109


What are the advantages of the functions?

1148


How many bytes are occupied by near, far and huge pointers (dos)?

1143


What is #include stdlib h?

1096


what will be the output for the following main() { printf("hi" "hello"); }

10951


Who invented bcpl language?

1176


How can I delete a file?

1051


Write a code to remove duplicates in a string.

1013


How do I get an accurate error status return from system on ms-dos?

1105


Are the variables argc and argv are always local to main?

1012