how to get the starting address of file stored in harddisk
through 'C'program.
Answer Posted / venu
FILE *fp ; is a virtual address in library.
You need meta data to find the location on hard disk.
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is d scanf?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
What is clrscr in c?
Explain how can you tell whether a program was compiled using c versus c++?
Describe the steps to insert data into a singly linked list.
What are dangling pointers? How are dangling pointers different from memory leaks?
Why is it that not all header files are declared in every C program?
hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
What are the standard predefined macros?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
Why we use break in c?
Explain the use of #pragma exit?
Why do we use int main?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....