Explain how can I make sure that my program is the only one accessing a file?
No Answer is Posted For this Question
Be the First to Post Answer
What is the scope of global variable in c?
What are the similarities between c and c++?
define function
What are keywords c?
write a program for egyptian fractions in c?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
how to make program without <> in library.
if the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one of the item
How to access or modify the const variable in c ?
16 Answers HCL, HP,
Can we access array using pointer in c language?
What is New modifiers?
What is a union?