Answer Posted / rahul
no we can write a program with out main function, this
function is the main function which usually help OS to kill
the process that has executed, like in JAVA main() is used
as a thread whose wqork is to kill the executed process and
mark those as GC( Garbage collection)
| Is This Answer Correct ? | 10 Yes | 7 No |
Post New Answer View All Answers
What are the benefits of organizational structure?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
How can I split up a string into whitespace-separated fields?
What is difference between array and structure in c?
What does %d do in c?
What is function definition in c?
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
Write a program to reverse a string.
What is file in c preprocessor?
What is preprocessor with example?
Tell me with an example the self-referential structure?
What are the applications of c language?
What is the c language function prototype?
Is c easy to learn?
Is exit(status) truly equivalent to returning the same status from main?