answersLogoWhite

0

You might, with the help of your linker program (renaming external symbols and stuff like that), but it would be absolutely pointless.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Can you write a program without main in c?

Certainly, you can write a program without main, but you cannot build an executable from it, if that is okay with you.


Can a C program be written without main METHOD?

Every program requires an entry point. Main() provides the entry point in C.


How you create c program without semicolon?

int main () {}


Why there is one main function in c?

Because that's what is executed when you run the program.


Is it possible to immediately run your C plus plus program without compiling it?

No.


Is c program works without main function?

yes a C program can work without a main() function. Though its not the normal C code that you would be writing on ur gcc or turbo C compiler. for example Linux Source code ... does not have a main() function : for details u can visit: http://samarthonweb.blogspot.com/2009/08/c-programe-with-no-main-function.html


How do you get Linux program error in void main in c?

This question cannot be answered without seeing the source program.


Which Program that will run in C but not in C plus plus?

void main() { int *x = malloc(sizeof(int) * 10); }


How do you display semi colon without using semi colon in a c program?

main() { if(printf("%c",59)) }


How do you run c program without ideon dos?

Once the application is compiled, there is no need for an IDE.


How do you write a programm in c plus plus without using function main?

I don't think its possible. Every C++ program must at least have the main function.


Can a C program be written without main?

Yes. Windows GUI application are the tipical examples, their execution starts with 'WinMain', not 'main'