PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER
FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE
NAMES AS COMMAND LINE


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Why is void main used?

0 Answers  


what are enumerations in C

0 Answers   TCS,


What does the file stdio.h contain?

0 Answers  


Explain enumerated types.

0 Answers  


What is operator precedence?

0 Answers  


Why is c not oop?

0 Answers  


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); }

1 Answers   Vector,


How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?

2 Answers   Aricent, Manipal University,


main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }

9 Answers   TCS,


Can you tell me how to check whether a linked list is circular?

1 Answers  


What is wrong in this statement? scanf(“%d”,whatnumber);

0 Answers  


Tell us the use of fflush() function in c language?

0 Answers  


Categories