why the execution starts from main function

Answer Posted / vignesh1988i

their will be a program written for creating a
compiler..... so in that main() may be a first function call
for that coding written in compiler



thank u

Is This Answer Correct ?    7 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is uses of .net

1279


Describe explain how arrays can be passed to a user defined function

608


What is the difference between int main and void main in c?

596


What should malloc() do?

649


Compare interpreters and compilers.

642






Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?

660


What are types of structure?

608


Multiply an Integer Number by 2 Without Using Multiplication Operator

326


Can I initialize unions?

597


What are different types of operators?

600


1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.

2339


write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?

2415


Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].

648


What is typedef example?

621


How can I get the current date or time of day in a c program?

654