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 |
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
What are the various types of control structures in programming?
What is the general form of function in c?
What are structural members?
a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?
Explain how do you declare an array that will hold more than 64kb of data?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
How do you write a program which produces its own source code as its output?
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
main() { float a=3.2e40; printf("%d",a); }
Can we change the value of #define in c?
? ???Mirror Mirror on the wall????????