Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How do you write a program which produces its own source
code as its output?

Answer Posted / vivek

printitself.c

#include <stdio.h>

int main()
{

char ch;
FILE *file;

file=fopen("printitself.c","r");

while((ch=fgetc(file))!=EOF)
printf("%c",ch);

return 0;
}

Is This Answer Correct ?    19 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a program flowchart and how does it help in writing a program?

1082


What is void c?

1010


How many types of operators are there in c?

983


How can you restore a redirected standard stream?

1051


write a c program to find the sum of five entered numbers using an array named number

2073


Why do we use int main?

1042


Why are algorithms important in c program?

1067


Why is c so powerful?

1061


What is c standard library?

1145


Describe explain how arrays can be passed to a user defined function

1038


What are pointers really good for, anyway?

1012


What is the use of volatile?

1043


Write a program to reverse a given number in c language?

1049


How do you search data in a data file using random access method?

1252


how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.

1622