Is it possible to run a c program without using main?If yes
HOW??
Answer Posted / ankith.v
It is not possible
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
Can math operations be performed on a void pointer?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Explain why c is faster than c++?
Do you know the difference between exit() and _exit() function in c?
What do you understand by friend-functions? How are they used?
What do you mean by dynamic memory allocation in c?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
Explain goto?
Explain the difference between the local variable and global variable in c?
What is wrong with this program statement?
Why n++ execute faster than n+1 ?
What is the benefit of using an enum rather than a #define constant?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What is s or c?
What is a node in c?