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

Program to write some contents into a file using file
operations with proper error messages.

Answer Posted / manvitha

//writing into a file
main()
{
char c;
FILE *fp;
fp=fopen("infor.dat",'w');
printf("enter data \n enter tab & enter a stop\n");
do
{
c=getchar();
put c(c,fp);
}while(c!='\t');
fclose(fp);
getch();
}

Is This Answer Correct ?    6 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is assignment operator?

1110


what is reason of your company position's in india no. 1.

2411


Explain the use of keyword 'register' with respect to variables.

1095


What is use of bit field?

1349


Write a program for Overriding.

1210


Why doesnt that code work?

1272


Differentiate between null and void pointers.

1227


What are local variables c?

1071


main() { printf("hello"); fork(); }

1248


Explain how do you determine whether to use a stream function or a low-level function?

1131


How is a structure member accessed?

1185


What is masking?

1213


What is the use of a static variable in c?

1108


What are c header files?

1037


What are header files and explain what are its uses in c programming?

1172