how to execute with out main in cprogram
Answer Posted / gaurav
At most websites i read that no c prg. can be without main
but this was surprising
i never thought it could be done with such twist
good one
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Define circular linked list.
What does *p++ do?
With the help of using classes, write a program to add two numbers.
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
How can I send mail from within a c program?
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 ].
Is null equal to 0 in sql?
Explain what are its uses in c programming?
What is the symbol indicated the c-preprocessor?
What are loops c?
Is Exception handling possible in c language?
What are the advantages of the functions?
How can I manipulate strings of multibyte characters?
What are the different file extensions involved when programming in C?
Which is better malloc or calloc?