[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]


    Search the Q&A Archives


how the output of c program will produce source code of its...

<< Back to: comp.lang.c Answers to Frequently Asked Questions (FAQ List)

Question by suri
Submitted on 9/11/2003
Related FAQ: comp.lang.c Answers to Frequently Asked Questions (FAQ List)
Rating: Rate this question: Vote
how the output of c program will produce source code of its own


Answer by mudda123
Submitted on 10/7/2003
Rating:  Rate this answer: Vote
open the source file itself  in read text mode for example if U your program is jag.c then open this file in text read only mode.Print the content of  file till end of file.

 

Answer by Anand
Submitted on 11/12/2003
Rating:  Rate this answer: Vote
The fallowing may do the things

Plz check the syntax of strtok function

#include <stdio.h>
#include <string.h>

int main(int argc,int **argv)
{
   FILE * fp;
   char *fname,ch;
    
   fname=strtok(argv[0],".");
  
   strcat(fname,".c");
   fp=fopen(fname,"r");
  
   printf("The file is...\n");  
   while((ch=fgetc(fp))!=EOF){
      putc(ch);
   }  
}

 

Answer by shrinidhi
Submitted on 11/25/2003
Rating:  Rate this answer: Vote
main(a){a="main(a){a=%c%s%c;printf(a,34,a,34);}";printf(a,34,a,34);}

 

Answer by Rahul agrawal
Submitted on 2/20/2005
Rating: Not yet rated Rate this answer: Vote
main(a){a="main(a){a=%c%s%c;printf(a,34,a,34);}";printf(a,34,a,34);}

 

Answer by S_Raghavendra
Submitted on 6/27/2005
Rating: Not yet rated Rate this answer: Vote
//consider the file name be " sourcecd "
#include<stdio.h>
void main()
{
clrscr();
system("cd\");
system("cd tc");
system("cd programs");
system("type sourcecd.c");
}
/*Now execute the following file and open the .exe file in Tc/bin folder You will get*/

 

Answer by Raghavendra_s28
Submitted on 6/27/2005
Rating: Not yet rated Rate this answer: Vote
//consider "sourcecd" be the file name
#include<stdio.h>
void main()
{
clrscr();
system("cd\");
system("cd tc");
system("cd programs");
system("type sourcecd.c");
}
/*Now open the .exe file which will be created in the bin folder*/

 

Your answer will be published for anyone to see and rate.  Your answer will not be displayed immediately.  If you'd like to get expert points and benefit from positive ratings, please create a new account or login into an existing account below.


Your name or nickname:
If you'd like to create a new account or access your existing account, put in your password here:
Your answer:

FAQS.ORG reserves the right to edit your answer as to improve its clarity.  By submitting your answer you authorize FAQS.ORG to publish your answer on the WWW without any restrictions. You agree to hold harmless and indemnify FAQS.ORG against any claims, costs, or damages resulting from publishing your answer.

 

FAQS.ORG makes no guarantees as to the accuracy of the posts. Each post is the personal opinion of the poster. These posts are not intended to substitute for medical, tax, legal, investment, accounting, or other professional advice. FAQS.ORG does not endorse any opinion or any product or service mentioned mentioned in these posts.

 

<< Back to: comp.lang.c Answers to Frequently Asked Questions (FAQ List)


[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]

© 2008 FAQS.ORG. All rights reserved.