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
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 |
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 |
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 |
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 |
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 |
what is c language?
When is a void pointer used?
what is the use of ~ in c lang?????
What is the difference between Printf(..) and sprint(...) ?
Write a code on reverse string and its complexity.
what is the program to display your name in any color?
How do we open a binary file in Read/Write mode in C?
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
Can variables be declared anywhere in c?
What is diffrance between declaration and defination of a variable or function
How can I find the modification date of a file?
What is Conio.h ?