Hi,
main()
{
}

Is a user defined function or Built in Functionn

Answers were Sorted based on User's Feedback



Hi, main() { } Is a user defined function or Built in Functionn..

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

Hi, main() { } Is a user defined function or Built in Functionn..

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

Hi, main() { } Is a user defined function or Built in Functionn..

Answer / lakkup

it is an inbuilt function i.e, main() it indicates the
starting of the program and it is a user defined function
when the user defines it as void main() or int main(void).

Is This Answer Correct ?    6 Yes 13 No

Hi, main() { } Is a user defined function or Built in Functionn..

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

Hi, main() { } Is a user defined function or Built in Functionn..

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

Hi, main() { } Is a user defined function or Built in Functionn..

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

Post New Answer

More C Interview Questions

which is the best site or book for learning C...and i need the content for C..how to get the good programming skills....? can plz suggest me....

2 Answers  


#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?

2 Answers  


can we access one file to one directory?

1 Answers  


Why is it that not all header files are declared in every C program?

0 Answers  


How do you determine a file’s attributes?

0 Answers  






Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?

0 Answers  


What is the difference between fread and fwrite function?

0 Answers  


Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers

1 Answers  


how can we use static and extern?and where can we use this?

3 Answers   Excel,


What will be the output of x++ + ++x?

20 Answers   MBT, Religare,


What does s c mean on snapchat?

0 Answers  


Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?

0 Answers   MNC,


Categories