with out using main how to execute the program?
Answers were Sorted based on User's Feedback
Answer / pradeep
It is not a c program if it is not using main function.
Compiler starts execution from main function always.
Is This Answer Correct ? | 18 Yes | 4 No |
Answer / sagar
In any C program, it must contain main function..........
So, it is not possible to run any program without main
function .......
Is This Answer Correct ? | 5 Yes | 5 No |
difference between i++* and *++i
Why doesnt this code work?
What is c++ used for today?
Write a program in c to input a 5 digit number and print it in words.
what do you mean by defining a variable in our c code?
What is indirection?
how to create c progarm without void main()?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
which one is highest Priority in c? a)=,b)+,c)++,d)==
What is an volatile variable?
What type of function is main ()?
Write a code to determine the total number of stops an elevator would take to serve N number of people.