Main must be written as
a.the first function in the program
b.Second function in the program
c.Last function in the program
d.any where in the program

Answers were Sorted based on User's Feedback



Main must be written as a.the first function in the program b.Second function in the program ..

Answer / ningappa

any where in the program

Is This Answer Correct ?    81 Yes 3 No

Main must be written as a.the first function in the program b.Second function in the program ..

Answer / swamy s t

Answer is D. any where in the program.

No matter whereever it is because the program should
starts or begins from main() function only.

Is This Answer Correct ?    30 Yes 3 No

Main must be written as a.the first function in the program b.Second function in the program ..

Answer / manju

d.any where in the program
because the execution of a program begins from the main
function.it doesn't consider the place where the main
function written.

Is This Answer Correct ?    16 Yes 2 No

Main must be written as a.the first function in the program b.Second function in the program ..

Answer / piyush

its d.any where in the program

Is This Answer Correct ?    9 Yes 1 No

Main must be written as a.the first function in the program b.Second function in the program ..

Answer / devvv

main function is a basic in c programming
language.generally main is written first.but when executing
modular programs ,to avoid prototyping, other functions
are written first.so main can be written anywhere in a
program.but atleast one of the other functions must be
declared in main.

Is This Answer Correct ?    11 Yes 4 No

Main must be written as a.the first function in the program b.Second function in the program ..

Answer / nathan

any where in the program

Is This Answer Correct ?    8 Yes 2 No

Main must be written as a.the first function in the program b.Second function in the program ..

Answer / guest

d. any where in the program.

Is This Answer Correct ?    6 Yes 1 No

Main must be written as a.the first function in the program b.Second function in the program ..

Answer / maskfriend

d.any where in the program. but it should declare after the
declaration of veriable where it starts execution of the
program

Is This Answer Correct ?    6 Yes 2 No

Main must be written as a.the first function in the program b.Second function in the program ..

Answer / amala v

anywhere in the program

Is This Answer Correct ?    4 Yes 1 No

Main must be written as a.the first function in the program b.Second function in the program ..

Answer / sudipta panja

(d)--execution starts from main,i.e. compiler starts
compiling from main but the posn of main is not fixed.it can
be anywhere.

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More C Interview Questions

Explain the use of 'auto' keyword in c programming?

0 Answers  


What is a good data structure to use for storing lines of text?

0 Answers  


Explain the difference between call by value and call by reference in c language?

0 Answers  


What Is The Difference Between Null And Void Pointer?

0 Answers   TCS,


What's a "sequence point"?

3 Answers  






What are the types of assignment statements?

0 Answers  


write a program which counts a product of array elements lower than 10.

1 Answers  


What is #define used for in c?

0 Answers  


wap in c to accept n number display the highest and lowest value

2 Answers  


write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.

3 Answers  


What type is sizeof?

0 Answers  


Which of these functions is safer to use : fgets(), gets()? Why?

0 Answers  


Categories