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 to get the starting address of file stored in harddisk
through 'C'program.

Answer Posted / amvel

U can use FILE pointer, to find the address of a file in ur
hard disk.

What u hav to do is, Just pass the directory of the file to
lib function fopen(), to which u wanted to know the
address, and assign the return value of the function to a
FILE pointer. Now the file pointer holds the address of the
file.

Lets, look at the below code for better clarity.

#include<stdio.h>
#include<conio.h>

void main()
{
FILE *fp ;
char ch ;
fp = fopen("C:\\Documents and
Settings\\Vadivelt\\file.txt", "w+");

/*Gives the starting adds of ur file in the hard disk*/
printf("%d \n", fp);

_getch();
}

Is This Answer Correct ?    4 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the use of getchar functions?

1122


find the sum of two matrices and WAP for it.

1064


What is New modifiers?

1058


What do you mean by recursion in c?

1049


Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent

2073


What is a list in c?

982


How can you pass an array to a function by value?

1054


Explain the difference between call by value and call by reference in c language?

1050


What is difference between arrays and pointers?

1010


What is wrong in this statement? scanf(ā€œ%dā€,whatnumber);

1187


All technical questions

1919


How can I copy just a portion of a string?

1269


Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.

2273


List some applications of c programming language?

897


Explain what is the difference between far and near ?

1045