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

Hi,
main()
{
}

Is a user defined function or Built in Functionn

Answer Posted / suyash kumar (c.s. 1st year ni

it is user defined function..........as if we make another
funtion say for factorial void fact() and store it in
lib fun. then apply it in program except main it work as a
funtion.........moreover we defined main as we write
instruction in it and execution take place

Is This Answer Correct ?    1 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the explanation for modular programming?

1206


Is using exit() the same as using return?

1344


Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?

1000


What is the use of volatile?

1083


Distinguish between actual and formal arguments.

1073


main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above

1085


Write a program to know whether the input number is an armstrong number.

1113


#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

1152


Tell me what is the purpose of 'register' keyword in c language?

1006


When should the register modifier be used? Does it really help?

963


Why c language is called c?

1010


Why should I use standard library functions instead of writing my own?

1264


Can we declare function inside main?

997


Does c have an equivalent to pascals with statement?

995


Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon

2296