Hi,
main()
{
}
Is a user defined function or Built in Functionn
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / divya
it is built in function because (main )codings are written
by the software developer.so,we cant change anything in
this built in function.but user defined functions are
changed by us.
so it is built in function
Is This Answer Correct ? | 6 Yes | 12 No |
Answer / vignesh1988i
it's actually user defined built in function...... since we
the user gave the function name as main() when we write the
coding for the compailer........
Is This Answer Correct ? | 28 Yes | 41 No |
Answer / abhishek munde
main () is user defined function built in function.....
bcoz we define what it will do... and it already has it's
name as main.
Is This Answer Correct ? | 10 Yes | 26 No |
Answer / narender vadhava
it's a inbuilt function but it don't return any value
because void is used to return a charachter value.
Is This Answer Correct ? | 21 Yes | 67 No |
Is c is a low level language?
What is equivalent to ++i+++j?
why do we use pointer instead directly acessing the data?
What is the purpose of main() function?
wat are the two methods for swapping two numbers without using temp variable??
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
What do you mean by Recursion Function?
Find Index of least significant bit set in an Integer. ex. int value is say 10001000 results should be 4.
Can you write a programmer for FACTORIAL using recursion?
What are the types of operators in c?
What is the difference between #include <header file> and #include “header file”?
write a program that uses point of sale system. which are mainly used by retail markets, where the is a database inventory list, a slip should be printed for the customer. manage should be able to access what has been sold and what is left from stock?