main is a predefined or user define function
if user defined why?
if predefined whay?
Answers were Sorted based on User's Feedback
actually main function is a user defined function for the C
compiler developer.... but it is a built in or predefined
function according to the users using that compiler.... why
it is called as a predefined function because , the
prototype has already been defined in the compiler itself
we the users can't change the meaning of that unless or
until we write our own compiler , we can change the meaning
of main()......
for the main() , we don't know what is the prototype or
where the function has been called and wht excatly the
return value of it... it is built in and abstracted from the
user which is called abstraction in c++.........
thank u
Is This Answer Correct ? | 64 Yes | 16 No |
Answer / sandeep kumar yadav
the definition of main is given by the user so it is called
user define function..
the prototype is define by the compiler so it is called
predefine...
this function is dependent on both user and compiler for
the execution of the program.so it is not only user define
or predefine..
so we can say it is a special function called by operating
system to execute the program.
Is This Answer Correct ? | 22 Yes | 3 No |
Answer / chaitanya
Main() is a predeclared userdefined function,bcoz according to formal case the declaration of main is done already with a definite name which the user cannot chnge..but in later case the body or the definition of which is given by the user accordng to his need..i.e.:main is a pre declared user defined function.
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / mayank jain
Main() is a user define function because user define it, and main is a keyword that is predefined, that also tell the compiler for the execution of program is starting from here.
when we Write the program we never declare the main function anywhere, only define it.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / b.laddu lal
Main() a userdefined function or a predefined function a multimillion question?
main() is neither predefined nor userdefined function its a special member function call by Operating System......
Is This Answer Correct ? | 8 Yes | 6 No |
Answer / dada khalander
main() is an user defined function.Because the user writing the body of main() function,defining the body of main() by the user.So it can be considered as an user defined function
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / s.s.venkatesh
the main() is a predefined function because we can't change
the name of the function or characterstics of the function.
If the function is user defined means we can change the
name of the function as we wish.
So,the main() is a predefined function.
Is This Answer Correct ? | 20 Yes | 21 No |
Answer / chitaranjan barik
Main() is a predefined
function,because it's
prototype,call function,
returning val -all these
parameters only kown
to compile,not to
user.but we can use it
as user defined by
specifying our own
parameter
Is This Answer Correct ? | 3 Yes | 4 No |
Answer / vilas soni++
main() is predefined function, coz we can't change it's
prototype....
We can only implement it.... And we have to use main() in
our program coz it's "Entry Point" to any C program....
(We can say userdefined, if we can also define it's
prototype and name, and in this case we can't!, we can use
only available types of main()....)
Is This Answer Correct ? | 10 Yes | 12 No |
Answer / pramod jirage
main() is to be predefined beoause the progarm contralm
flows from main and it is essiontal to opreat the program
Is This Answer Correct ? | 0 Yes | 3 No |
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
Describe the order of precedence with regards to operators in C.
Can you think of a logic behind the game minesweeper.
write the output of following code .. main() { static int a[]={10,20,30,40,50}; int *ptr=a; static int arr[2][2]={1,2,3,4}; char str[]="ABCD * 4#"; char *s=str+2; int i,j; for(i=0;i<5,i++) printf("%d",*ptr++); for(i=0;i<2;i++) for(j=0;j<2;j++) printf("%d\n",*(*(n+i)+j)); printf("%c\n%c\n%c\n",*(str+2),*s++,*--s); }
List some applications of c programming language?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
0 Answers Amdocs, Apps Associates,
Is array a primitive data type in c?
how to print this sereis 2 4 3 6 5..........?
Why c is called top down?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
a program that can input number of records and can view it again the record
What is the scope of global variable in c?