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...

write a C program to print the program itself ?!

Answer Posted / hillel

#include<fstream>
void main()
{
std::ifstream is(__FILE__);

while(!is.eof())
printf("%c", is.get());

is.close();
}

Is This Answer Correct ?    5 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can variables be declared anywhere in c?

1148


What is bubble sort technique in c?

1039


Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)

1322


How to write a code for reverse of string without using string functions?

2200


Why is sizeof () an operator and not a function?

1089


largest Of three Number using without if condition?

1666


Explain zero based addressing.

1096


about c language

2074


What is pointer & why it is used?

1172


Tell me can the size of an array be declared at runtime?

1083


What is meant by realloc()?

1200


Explain the difference between the local variable and global variable in c?

1133


Explain the use of 'auto' keyword in c programming?

1183


What is pointer and structure in c?

1278


What are file streams?

1068