Aug 02 2008 11:46 AM 2956 15 A Program that does nothing d.gupta03 Write a program in C that does nothing not even takes memory? kbjarnason Profile Answers by kbjarnason Questions by kbjarnason Jul 1st, 2010 I suspect it is impossible to write a C program which "takes no memory", unless one rewrites the startup code for the implementation.For example, argv[0] is the "program name", whi... mohit_verma Profile Answers by mohit_verma Questions by mohit_verma Sep 11th, 2009 A program that does nothing is as:void main(void) {;} Answer Question Select Best Answer
Aug 02 2008 11:46 AM 2956 15 A Program that does nothing d.gupta03 Write a program in C that does nothing not even takes memory? kbjarnason Profile Answers by kbjarnason Questions by kbjarnason Jul 1st, 2010 I suspect it is impossible to write a C program which "takes no memory", unless one rewrites the startup code for the implementation.For example, argv[0] is the "program name", whi... mohit_verma Profile Answers by mohit_verma Questions by mohit_verma Sep 11th, 2009 A program that does nothing is as:void main(void) {;} Answer Question Select Best Answer
kbjarnason Profile Answers by kbjarnason Questions by kbjarnason Jul 1st, 2010 I suspect it is impossible to write a C program which "takes no memory", unless one rewrites the startup code for the implementation.For example, argv[0] is the "program name", whi...
mohit_verma Profile Answers by mohit_verma Questions by mohit_verma Sep 11th, 2009 A program that does nothing is as:void main(void) {;}