Is it possible to run a c program without using main?If yes
HOW??
Answer Posted / sourisengupta
Thanx elahi....
| Is This Answer Correct ? | 8 Yes | 5 No |
Post New Answer View All Answers
List out few of the applications that make use of Multilinked Structures?
How do you do dynamic memory allocation in C applications?
Is it valid to address one element beyond the end of an array?
What is a global variable in c?
How do c compilers work?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What's the best way of making my program efficient?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What is the difference between printf and scanf in c?
What is a node in c?
What is cohesion and coupling in c?
What are the two types of functions in c?
What is the sizeof () a pointer?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What are the types of data types and explain?